strstr -> strchr

https://www.viva64.com/en/w/V817/print/
This commit is contained in:
pavel.pimenov 2017-07-13 14:21:53 +03:00
parent 414b179d86
commit ea9f0cec30

View File

@ -153,7 +153,7 @@ JSONCPP_STRING valueToString(double value, bool useSpecialFloats, unsigned int p
fixNumericLocale(buffer, buffer + len);
// try to ensure we preserve the fact that this was given to us as a double on input
if (!strstr(buffer, ".") && !strstr(buffer, "e")) {
if (!strchr(buffer, '.') && !strchr(buffer, 'e')) {
strcat(buffer, ".0");
}