diff --git a/src/config/Parser.cxx b/src/config/Parser.cxx index f0a213980..1d79dca8e 100644 --- a/src/config/Parser.cxx +++ b/src/config/Parser.cxx @@ -34,7 +34,7 @@ ParseBool(const char *value) if (StringArrayContainsCase(f, value)) return false; - throw FormatRuntimeError("Not a valid boolean (\"yes\" or \"no\"): \"%s\"", value); + throw FormatRuntimeError(R"(Not a valid boolean ("yes" or "no"): "%s")", value); } template