Author: ros-arm-bringup
Date: Sat Jul 11 17:12:09 2009
New Revision: 41882
URL:
http://svn.reactos.org/svn/reactos?rev=41882&view=rev
Log:
Fix the signature of tcsrchr. The last prameter is a TCHAR, not a XINT.
Modified:
trunk/reactos/lib/sdk/crt/string/tcsrchr.h
Modified: trunk/reactos/lib/sdk/crt/string/tcsrchr.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/string/tcsrchr…
==============================================================================
--- trunk/reactos/lib/sdk/crt/string/tcsrchr.h [iso-8859-1] (original)
+++ trunk/reactos/lib/sdk/crt/string/tcsrchr.h [iso-8859-1] Sat Jul 11 17:12:09 2009
@@ -3,7 +3,7 @@
#include <tchar.h>
-_TCHAR * _tcsrchr(const _TCHAR * s, _XINT c)
+_TCHAR * _tcsrchr(const _TCHAR * s, _TCHAR c)
{
_TCHAR cc = c;
const _TCHAR * sp = (_TCHAR *)0;