Fix wrong variable usage in to_search_normalized

develop
George Murray 2020-09-24 10:52:03 -07:00
parent a3c565b243
commit 38c9c28250
1 changed files with 1 additions and 1 deletions

@ -159,7 +159,7 @@ std::string to_search_normalized(const std::string &str)
else else
while (*mapped != '\0') while (*mapped != '\0')
{ {
result.sputc(tolower(c)); result.sputc(tolower(*mapped));
++mapped; ++mapped;
} }
} }