Author: tfaber
Date: Sun Oct 16 11:26:06 2011
New Revision: 54158
URL:
http://svn.reactos.org/svn/reactos?rev=54158&view=rev
Log:
[NTDLL_WINETEST]
- Fix MSVC build. Already sent upstream(TM)
Modified:
trunk/rostests/winetests/ntdll/string.c
Modified: trunk/rostests/winetests/ntdll/string.c
URL:
http://svn.reactos.org/svn/reactos/trunk/rostests/winetests/ntdll/string.c?…
==============================================================================
--- trunk/rostests/winetests/ntdll/string.c [iso-8859-1] (original)
+++ trunk/rostests/winetests/ntdll/string.c [iso-8859-1] Sun Oct 16 11:26:06 2011
@@ -1165,7 +1165,7 @@
ok(p_wcsupr((LPWSTR)constemptyW) == constemptyW, "p_wcsupr returned different
string\n");
}
-static __cdecl int intcomparefunc(const void *a, const void *b)
+static int __cdecl intcomparefunc(const void *a, const void *b)
{
const int *p = a, *q = b;
@@ -1174,7 +1174,7 @@
return *p - *q;
}
-static __cdecl int charcomparefunc(const void *a, const void *b)
+static int __cdecl charcomparefunc(const void *a, const void *b)
{
const char *p = a, *q = b;
@@ -1183,7 +1183,7 @@
return *p - *q;
}
-static __cdecl int strcomparefunc(const void *a, const void *b)
+static int __cdecl strcomparefunc(const void *a, const void *b)
{
const char * const *p = a;
const char * const *q = b;