From 6174f3d53afe6f4a860473169b2173a062fbb61e Mon Sep 17 00:00:00 2001 From: ReactOS Portable Systems Group Date: Sun, 12 Jul 2009 10:40:39 +0000 Subject: [PATCH] Revert the change to tcsrchr, it should be a XINT not a TCHAR svn path=/trunk/; revision=41916 --- 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 7e30c1a3aa7..354003273db 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, _TCHAR c) +_TCHAR * _tcsrchr(const _TCHAR * s, _XINT c) { _TCHAR cc = c; const _TCHAR * sp = (_TCHAR *)0;