Author: tkreuzer
Date: Sun Feb 17 14:33:01 2013
New Revision: 58332
URL:
http://svn.reactos.org/svn/reactos?rev=58332&view=rev
Log:
[WINE]
Silence GCC 4.7.2 warnings
Modified:
trunk/reactos/include/reactos/wine/debug.h
Modified: trunk/reactos/include/reactos/wine/debug.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/reactos/wine/debug…
==============================================================================
--- trunk/reactos/include/reactos/wine/debug.h [iso-8859-1] (original)
+++ trunk/reactos/include/reactos/wine/debug.h [iso-8859-1] Sun Feb 17 14:33:01 2013
@@ -245,9 +245,9 @@
#define WINE_ERR_ON(ch) __WINE_IS_DEBUG_ON(_ERR,&__wine_dbch_##ch)
#define WINE_DECLARE_DEBUG_CHANNEL(ch) \
- static struct __wine_debug_channel __wine_dbch_##ch = { ~0, #ch }
+ static struct __wine_debug_channel __wine_dbch_##ch = { (unsigned char)~0, #ch }
#define WINE_DEFAULT_DEBUG_CHANNEL(ch) \
- static struct __wine_debug_channel __wine_dbch_##ch = { ~0, #ch }; \
+ static struct __wine_debug_channel __wine_dbch_##ch = { (unsigned char)~0, #ch }; \
static struct __wine_debug_channel * const __wine_dbch___default =
&__wine_dbch_##ch
#define WINE_DPRINTF wine_dbg_printf