Remove trailing whitespace. Sorry if this breaks your patches.
[oweals/opkg-lede.git] / libbb / last_char_is.c
index 4e2ee92ed9a71a2231a4bdafeaef1062e972ea98..26c242369a2e2cb586e7666d3923757f4c42c52c 100644 (file)
@@ -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;