Revert the change to tcsrchr, it should be a XINT not a TCHAR

svn path=/trunk/; revision=41916
This commit is contained in:
ReactOS Portable Systems Group 2009-07-12 10:40:39 +00:00
parent 1554007aa6
commit 6174f3d53a

View file

@ -3,7 +3,7 @@
#include <tchar.h>
_TCHAR * _tcsrchr(const _TCHAR * s, _TCHAR c)
_TCHAR * _tcsrchr(const _TCHAR * s, _XINT c)
{
_TCHAR cc = c;
const _TCHAR * sp = (_TCHAR *)0;