diff options
Diffstat (limited to 'lib/libc/string/rindex.c')
-rw-r--r-- | lib/libc/string/rindex.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/string/rindex.c b/lib/libc/string/rindex.c index d0be32e..9deeb1f 100644 --- a/lib/libc/string/rindex.c +++ b/lib/libc/string/rindex.c @@ -53,9 +53,10 @@ rindex (const char *p, int ch) { char *save; + char c = ch; for (save = NULL;; ++p) { - if (*p == ch) + if (*p == c) save = (char *)p; if (*p == '\0') return (save); |