msvcrt/tests: Cast-qual warnings fix (1 of 3)

Andrew Talbot Andrew.Talbot at talbotville.com
Mon Dec 11 15:41:00 CST 2006


Changelog:
    msvcrt: Cast-qual warnings fix.

diff -urN a/dlls/msvcrt/tests/cpp.c b/dlls/msvcrt/tests/cpp.c
--- a/dlls/msvcrt/tests/cpp.c	2006-05-23 13:48:19.000000000 +0100
+++ b/dlls/msvcrt/tests/cpp.c	2006-12-11 19:04:01.000000000 +0000
@@ -140,7 +140,7 @@
   return (void*)retval;
 }
 
-inline static void* do_call_func2(void *func, void *_this, void* arg)
+inline static void* do_call_func2(void *func, void *_this, const void* arg)
 {
   volatile void* retval = 0;
   __asm
@@ -164,7 +164,7 @@
                         : "memory" );
   return ret;
 }
-static void* do_call_func2(void *func, void *_this, void* arg)
+static void* do_call_func2(void *func, void *_this, const void* arg)
 {
   void* ret;
   __asm__ __volatile__ ("pushl %2\n\tcall *%1"
@@ -176,7 +176,7 @@
 #endif
 
 #define call_func1(x,y)   do_call_func1((void*)x,(void*)y)
-#define call_func2(x,y,z) do_call_func2((void*)x,(void*)y,(void*)z)
+#define call_func2(x,y,z) do_call_func2((void*)x,(void*)y,(const void*)z)
 
 /* Some exports are only available in later versions */
 #define SETNOFAIL(x,y) x = (void*)GetProcAddress(hMsvcrt,y)



More information about the wine-patches mailing list