From 73972e49289b8d36c8eee79901b8dc1fbc36e9ce Mon Sep 17 00:00:00 2001 From: ReactOS Portable Systems Group Date: Sat, 11 Jul 2009 13:12:09 +0000 Subject: [PATCH] Fix the signature of tcsrchr. The last prameter is a TCHAR, not a XINT. svn path=/trunk/; revision=41882 --- reactos/lib/sdk/crt/string/tcsrchr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/lib/sdk/crt/string/tcsrchr.h b/reactos/lib/sdk/crt/string/tcsrchr.h index 354003273db..7e30c1a3aa7 100644 --- a/reactos/lib/sdk/crt/string/tcsrchr.h +++ b/reactos/lib/sdk/crt/string/tcsrchr.h @@ -3,7 +3,7 @@ #include -_TCHAR * _tcsrchr(const _TCHAR * s, _XINT c) +_TCHAR * _tcsrchr(const _TCHAR * s, _TCHAR c) { _TCHAR cc = c; const _TCHAR * sp = (_TCHAR *)0;