Module: wine Branch: master Commit: e72e40b3dae01fe69adf7d846cfafb106a53cb0e URL: http://source.winehq.org/git/wine.git/?a=commit;h=e72e40b3dae01fe69adf7d846c...
Author: Andrew Talbot andrew.talbot@talbotville.com Date: Sat Dec 1 16:38:02 2012 +0000
winspool.drv: Remove unused semicolons.
---
dlls/winspool.drv/info.c | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/dlls/winspool.drv/info.c b/dlls/winspool.drv/info.c index d8a78b0..f23d8cc 100644 --- a/dlls/winspool.drv/info.c +++ b/dlls/winspool.drv/info.c @@ -784,9 +784,9 @@ static void *cupshandle; DO_FUNC(cupsGetOption); \ DO_FUNC(cupsGetPPD); \ DO_FUNC(cupsParseOptions); \ - DO_FUNC(cupsPrintFile); + DO_FUNC(cupsPrintFile) #define CUPS_OPT_FUNCS \ - DO_FUNC(cupsGetPPD3); + DO_FUNC(cupsGetPPD3)
#define DO_FUNC(f) static typeof(f) *p##f CUPS_FUNCS; @@ -894,10 +894,10 @@ static BOOL CUPS_LoadPrinters(void) } TRACE("%p: %s loaded\n", cupshandle, SONAME_LIBCUPS);
-#define DO_FUNC(x) p##x = wine_dlsym( cupshandle, #x, NULL, 0 ); if (!p##x) return FALSE; +#define DO_FUNC(x) p##x = wine_dlsym( cupshandle, #x, NULL, 0 ); if (!p##x) return FALSE CUPS_FUNCS; #undef DO_FUNC -#define DO_FUNC(x) p##x = wine_dlsym( cupshandle, #x, NULL, 0 ); +#define DO_FUNC(x) p##x = wine_dlsym( cupshandle, #x, NULL, 0 ) CUPS_OPT_FUNCS; #undef DO_FUNC