diff options
| author | Jordan K. Hubbard <jkh@FreeBSD.org> | 2003-12-18 07:44:53 +0000 |
|---|---|---|
| committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 2003-12-18 07:44:53 +0000 |
| commit | fee66713adfa80bcbcfca34f37cb455a2129fd8b (patch) | |
| tree | f56a053adf939ab1a6ac83ca6c3935b30509362c /lib/libc/string/rindex.c | |
| parent | f415f20926b5aaeab8db5b15f6f4a60cd4cd18b4 (diff) | |
Notes
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 9deeb1fb209c..641c00f7ee89 100644 --- a/lib/libc/string/rindex.c +++ b/lib/libc/string/rindex.c @@ -53,8 +53,9 @@ rindex (const char *p, int ch) { char *save; - char c = ch; + char c; + c = ch; for (save = NULL;; ++p) { if (*p == c) save = (char *)p; |
