diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-06-13 14:06:04 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-06-13 14:06:04 -0400 |
commit | 73d2fde1195401dfb87935f46126f9481af1a8c3 (patch) | |
tree | ef6c763d69560b8d70ed3f29ad51e37938b08721 /src | |
parent | 773b0fe4473be18fdcc1b822630e2ebdb1719536 (diff) | |
download | musl-73d2fde1195401dfb87935f46126f9481af1a8c3.tar.gz |
fix wrong type for wcsrchr argument 2
Diffstat (limited to 'src')
-rw-r--r-- | src/string/wcsrchr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/string/wcsrchr.c b/src/string/wcsrchr.c index 7503475a..8961b9e2 100644 --- a/src/string/wcsrchr.c +++ b/src/string/wcsrchr.c @@ -1,6 +1,6 @@ #include <wchar.h> -wchar_t *wcsrchr(const wchar_t *s, wint_t c) +wchar_t *wcsrchr(const wchar_t *s, wchar_t c) { const wchar_t *p; for (p=s+wcslen(s); p>=s && *p!=c; p--); |