about summary refs log tree commit diff
path: root/src/rustc/driver
diff options
context:
space:
mode:
Diffstat (limited to 'src/rustc/driver')
-rw-r--r--src/rustc/driver/driver.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rustc/driver/driver.rs b/src/rustc/driver/driver.rs
index 0cb99af2141..fa60fa5934a 100644
--- a/src/rustc/driver/driver.rs
+++ b/src/rustc/driver/driver.rs
@@ -587,8 +587,8 @@ fn build_output_filenames(input: input,
                           ofile: option<str>,
                           sess: session)
         -> output_filenames {
-    let mut obj_path = "";
-    let mut out_path: str = "";
+    let mut obj_path; // FIXME remove mut after snapshot
+    let mut out_path; // FIXME remove mut after snapshot
     let sopts = sess.opts;
     let stop_after_codegen =
         sopts.output_type != link::output_type_exe ||