From: Rich Felker Date: Mon, 13 Jun 2011 18:06:04 +0000 (-0400) Subject: fix wrong type for wcsrchr argument 2 X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=73d2fde1195401dfb87935f46126f9481af1a8c3;hp=773b0fe4473be18fdcc1b822630e2ebdb1719536 fix wrong type for wcsrchr argument 2 --- 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_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--);