summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/shared/utf8.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/shared/utf8.c b/src/shared/utf8.c
index ea7483f50f..5f9f3c60c5 100644
--- a/src/shared/utf8.c
+++ b/src/shared/utf8.c
@@ -265,7 +265,8 @@ char *ascii_is_valid(const char *str) {
}
char *ascii_filter(const char *str) {
- char *r, *s, *d;
+ const char *s;
+ char *r, *d;
size_t l;
assert(str);