kernel32: No need for WINE_ prefixed debug output macros

André Hentschel nerv at dawncrow.de
Tue Jan 10 15:29:08 CST 2012


---
 dlls/kernel32/term.c |    7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/dlls/kernel32/term.c b/dlls/kernel32/term.c
index 5123090..814b937 100644
--- a/dlls/kernel32/term.c
+++ b/dlls/kernel32/term.c
@@ -177,15 +177,14 @@ static BOOL TERM_bind_libcurses(void)
 
     if (!(nc_handle = wine_dlopen(ncname, RTLD_NOW, NULL, 0)))
     {
-        WINE_MESSAGE("Wine cannot find the " CURSES_NAME " library (%s).\n",
-                     ncname);
+        MESSAGE("Wine cannot find the " CURSES_NAME " library (%s).\n", ncname);
         return FALSE;
     }
 
 #define LOAD_FUNCPTR(f)                                      \
     if((p_##f = wine_dlsym(nc_handle, #f, NULL, 0)) == NULL) \
     {                                                        \
-        WINE_WARN("Can't find symbol %s\n", #f);             \
+        WARN("Can't find symbol %s\n", #f);                  \
         goto sym_not_found;                                  \
     }
 
@@ -199,7 +198,7 @@ static BOOL TERM_bind_libcurses(void)
     return TRUE;
 
 sym_not_found:
-    WINE_MESSAGE(
+    MESSAGE(
       "Wine cannot find certain functions that it needs inside the "
        CURSES_NAME "\nlibrary.  To enable Wine to use " CURSES_NAME
       " please upgrade your " CURSES_NAME "\nlibraries\n");
-- 

Best Regards, André Hentschel
-------------- next part --------------
An embedded and charset-unspecified text was scrubbed...
Name: Nachrichtenteil als Anhang
URL: <http://www.winehq.org/pipermail/wine-patches/attachments/20120110/5896a15a/attachment.ksh>


More information about the wine-patches mailing list