diff options
Diffstat (limited to 'src/FbTk/StringUtil.cc')
-rw-r--r-- | src/FbTk/StringUtil.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/FbTk/StringUtil.cc b/src/FbTk/StringUtil.cc index 691b600..182233b 100644 --- a/src/FbTk/StringUtil.cc +++ b/src/FbTk/StringUtil.cc | |||
@@ -183,7 +183,7 @@ string findExtension(const string &filename) { | |||
183 | string::size_type findCharFromAlphabetAfterTrigger(const std::string& in, char trigger, const char alphabet[], size_t len_alphabet, size_t* found) { | 183 | string::size_type findCharFromAlphabetAfterTrigger(const std::string& in, char trigger, const char alphabet[], size_t len_alphabet, size_t* found) { |
184 | for (const char* s = in.c_str(); *s != '\0'; ) { | 184 | for (const char* s = in.c_str(); *s != '\0'; ) { |
185 | if (*s++ == trigger && *s != '\0') { | 185 | if (*s++ == trigger && *s != '\0') { |
186 | for (const char* a = alphabet; (a - alphabet) < len_alphabet; ++a) { | 186 | for (const char* a = alphabet; (a - alphabet) < static_cast<ssize_t>(len_alphabet); ++a) { |
187 | if (*s == *a) { | 187 | if (*s == *a) { |
188 | if (found) { | 188 | if (found) { |
189 | *found = a - alphabet; | 189 | *found = a - alphabet; |