summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/string/wcsrchr.c2
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--);