X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/14665143f973d5dbcdab34de439bdd37a56d0e5f..461317c8fb5ec758fd77d2d7450ca3cd94fc58c2:/sbr/utils.c?ds=sidebyside 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; }