summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Ian Rogers <irogers@google.com> 2014-05-20 06:15:00 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2014-05-20 06:15:00 +0000
commit422b2e538fbcd8111ea34960804f0f9793e5653a (patch)
treed78ff1137cbd5ed6646669fefb10d7effc699f48
parent7d718dfc1fcd2086749fee23bb6619deb2d5b194 (diff)
parentf7fd3cb65091c53de0ea2e9bc6fe1af8dc413ebf (diff)
Merge "Fix typo in option parsing."
-rw-r--r--runtime/parsed_options.cc2
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;