summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;