summaryrefslogtreecommitdiffstats
path: root/libbb/last_char_is.c
diff options
context:
space:
mode:
Diffstat (limited to 'libbb/last_char_is.c')
-rw-r--r--libbb/last_char_is.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/last_char_is.c b/libbb/last_char_is.c
index 4e2ee92..26c2423 100644
--- a/libbb/last_char_is.c
+++ b/libbb/last_char_is.c
@@ -32,7 +32,7 @@ char * last_char_is(const char *s, int c)
if (!s)
return NULL;
sret = (char *)s+strlen(s)-1;
- if (sret>=s && *sret == c) {
+ if (sret>=s && *sret == c) {
return sret;
} else {
return NULL;