about summary refs log tree commit diff
path: root/src/rustc/driver/rustc.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/rustc/driver/rustc.rs')
-rw-r--r--src/rustc/driver/rustc.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rustc/driver/rustc.rs b/src/rustc/driver/rustc.rs
index 8d0b8549062..a6351f824b4 100644
--- a/src/rustc/driver/rustc.rs
+++ b/src/rustc/driver/rustc.rs
@@ -93,9 +93,9 @@ fn run_compiler(args: [str], demitter: diagnostic::emitter) {
         ret;
     }
     let ifile = alt vec::len(match.free) {
-      0u { early_error(demitter, "No input filename given.") }
+      0u { early_error(demitter, "o input filename given") }
       1u { match.free[0] }
-      _ { early_error(demitter, "Multiple input filenames provided.") }
+      _ { early_error(demitter, "multiple input filenames provided") }
     };
 
     let sopts = build_session_options(match, demitter);