[ros-diffs] [ros-arm-bringup] 41882: Fix the signature of tcsrchr. The last prameter is a TCHAR, not a XINT.

ros-arm-bringup at svn.reactos.org ros-arm-bringup at svn.reactos.org
Sat Jul 11 15:12:10 CEST 2009


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.h?rev=41882&r1=41881&r2=41882&view=diff
==============================================================================
--- 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;



More information about the Ros-diffs mailing list