diff options
| author | 2014-05-20 06:15:00 +0000 | |
|---|---|---|
| committer | 2014-05-20 06:15:00 +0000 | |
| commit | 422b2e538fbcd8111ea34960804f0f9793e5653a (patch) | |
| tree | d78ff1137cbd5ed6646669fefb10d7effc699f48 | |
| parent | 7d718dfc1fcd2086749fee23bb6619deb2d5b194 (diff) | |
| parent | f7fd3cb65091c53de0ea2e9bc6fe1af8dc413ebf (diff) | |
Merge "Fix typo in option parsing."
| -rw-r--r-- | runtime/parsed_options.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/parsed_options.cc b/runtime/parsed_options.cc index 6d53ba1176..f81c25f168 100644 --- a/runtime/parsed_options.cc +++ b/runtime/parsed_options.cc @@ -534,7 +534,7 @@ bool ParsedOptions::Parse(const Runtime::Options& options, bool ignore_unrecogni } else if (option == "-Xprofile:dualclock") { Trace::SetDefaultClockSource(kProfilerClockSourceDual); } else if (StartsWith(option, "-Xprofile:")) { - if (!ParseStringAfterChar(option, ';', &profile_output_filename_)) { + if (!ParseStringAfterChar(option, ':', &profile_output_filename_)) { return false; } profile_ = true; |