diff options
| author | 2014-05-19 22:57:34 -0700 | |
|---|---|---|
| committer | 2014-05-19 22:57:34 -0700 | |
| commit | f7fd3cb65091c53de0ea2e9bc6fe1af8dc413ebf (patch) | |
| tree | 83231c1fd0a668737dab9890ec336b0b709efd35 | |
| parent | 1a5ff7c3a6508deacd3fd6473de80c62f7316a81 (diff) | |
Fix typo in option parsing.
Change-Id: I3fd7ad6e445babde0677179f3b49f76de3f6894f
| -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; |