diff options
Diffstat (limited to 'components/util/opts.rs')
-rw-r--r-- | components/util/opts.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/util/opts.rs b/components/util/opts.rs index c46294afafc..b74b416395d 100644 --- a/components/util/opts.rs +++ b/components/util/opts.rs @@ -649,7 +649,7 @@ pub fn from_cmdline_args(args: &[String]) -> ArgumentParsingResult { for debug_string in opt_match.opt_strs("Z") { if let Err(e) = debug_options.extend(debug_string) { - return args_fail(&format!("error: unrecognized debug option: {}", e)); + args_fail(&format!("error: unrecognized debug option: {}", e)); } } |