diff options
-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 639f98062b71..0cf1046ef376 100644 --- a/tools/incident_section_gen/main.cpp +++ b/tools/incident_section_gen/main.cpp @@ -138,7 +138,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()); |