From 5d40c09bb63e3244aa1d4d0ff472a81c0a5433db Mon Sep 17 00:00:00 2001 From: Thomas Faber Date: Sun, 16 Oct 2011 11:26:06 +0000 Subject: [PATCH] [NTDLL_WINETEST] - Fix MSVC build. Already sent upstream(TM) svn path=/trunk/; revision=54158 --- rostests/winetests/ntdll/string.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rostests/winetests/ntdll/string.c b/rostests/winetests/ntdll/string.c index 9422d415280..802a1655fc9 100755 --- a/rostests/winetests/ntdll/string.c +++ b/rostests/winetests/ntdll/string.c @@ -1165,7 +1165,7 @@ static void test_wcslwrupr(void) 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 @@ static __cdecl int intcomparefunc(const void *a, const void *b) 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 @@ static __cdecl int charcomparefunc(const void *a, const void *b) 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;