diff options
Diffstat (limited to 'Src/utils.c')
-rw-r--r-- | Src/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/utils.c b/Src/utils.c index c0081f8e1..bc04c3ec6 100644 --- a/Src/utils.c +++ b/Src/utils.c @@ -5017,7 +5017,7 @@ getkeystring(char *s, int *len, int how, int *misc) /**/ mod_export int -strpfx(char *s, char *t) +strpfx(const char *s, const char *t) { while (*s && *s == *t) s++, t++; |