X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/14665143f973d5dbcdab34de439bdd37a56d0e5f..95682af82216c4a04993d86825815a0195cddb85:/sbr/utils.c diff --git a/sbr/utils.c b/sbr/utils.c index a6f0e111..06835d2b 100644 --- a/sbr/utils.c +++ b/sbr/utils.c @@ -372,7 +372,7 @@ bool HasPrefix(const char *s, const char *prefix) /* HasSuffixC returns true if non-NULL string s ends with a c before the * terminating NUL. */ -bool HasSuffixC(char *s, int c) +bool HasSuffixC(const char *s, int c) { return *s && s[strlen(s) - 1] == c; }