From 3a82d3b23a8d8de6b83d249d678cecc3ea9b11a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Hentschel?= Date: Tue, 10 Jan 2012 22:29:08 +0100 Subject: [PATCH] kernel32: No need for WINE_ prefixed debug output macros. --- dlls/kernel32/term.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/dlls/kernel32/term.c b/dlls/kernel32/term.c index 51230908fdc..814b937c0f8 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");