Fix the signature of tcsrchr. The last prameter is a TCHAR, not a XINT.

svn path=/trunk/; revision=41882
This commit is contained in:
ReactOS Portable Systems Group
2009-07-11 13:12:09 +00:00
parent db532903fb
commit 73972e4928
+1 -1
View File
@@ -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;