X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/14665143f973d5dbcdab34de439bdd37a56d0e5f..767e669eb7c50e5dd7e1ec9aae5c06c2b66b0819:/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; }