diff options
author | Chih-Hung Hsieh <chh@google.com> | 2018-09-24 12:01:38 -0700 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2018-09-24 12:01:38 -0700 |
commit | ad8cf079f55503f5c688249226ae03af28c9a8ab (patch) | |
tree | 5e8531bdbeca15a6bacb06a84ecad9e2a848ed42 | |
parent | df8babf2d360baa5bb1f1855c12f4c12a427314d (diff) | |
parent | 18242e5c089fbdbe396d902ccac4479fcbbaab83 (diff) |
Merge "Fix clang-tidy performance warnings in frameworks/base." am: 4a2dd10d83
am: 18242e5c08
Change-Id: Id6149de2848d7c0bb77aa04cc523e29498b8bbd1
-rw-r--r-- | tools/incident_section_gen/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/incident_section_gen/main.cpp b/tools/incident_section_gen/main.cpp index 3689a8f2981e..4b5677a75b70 100644 --- a/tools/incident_section_gen/main.cpp +++ b/tools/incident_section_gen/main.cpp @@ -140,7 +140,7 @@ static void splitAndPrint(const string& args) { size_t base = 0; size_t found; while (true) { - found = args.find_first_of(" ", base); + found = args.find_first_of(' ', base); if (found != base) { string arg = args.substr(base, found - base); printf(" \"%s\",", arg.c_str()); |