summaryrefslogtreecommitdiff
path: root/src/string_func.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/string_func.h')
-rw-r--r--src/string_func.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/string_func.h b/src/string_func.h
index 10203047b..fbf532b7a 100644
--- a/src/string_func.h
+++ b/src/string_func.h
@@ -208,11 +208,11 @@ static inline bool IsUtf8Part(char c)
* @note The function should not be used to determine the length of the previous
* encoded char because it might be an invalid/corrupt start-sequence
*/
-static inline char *Utf8PrevChar(const char *s)
+static inline char *Utf8PrevChar(char *s)
{
- const char *ret = s;
+ char *ret = s;
while (IsUtf8Part(*--ret)) {}
- return (char*)ret;
+ return ret;
}