From 6e59407e1c5d9081dcea1049d322c1edf1d67a34 Mon Sep 17 00:00:00 2001 From: Andrew Talbot Date: Mon, 22 Dec 2008 20:22:10 +0000 Subject: [PATCH] msvfw32: Remove superfluous semicolon. --- dlls/msvfw32/msvideo_main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dlls/msvfw32/msvideo_main.c b/dlls/msvfw32/msvideo_main.c index fa02716fbe..247c00e7d6 100644 --- a/dlls/msvfw32/msvideo_main.c +++ b/dlls/msvfw32/msvideo_main.c @@ -1026,9 +1026,9 @@ void VFWAPI ICCompressorFree(PCOMPVARS pc) LRESULT MSVIDEO_SendMessage(WINE_HIC* whic, UINT msg, DWORD_PTR lParam1, DWORD_PTR lParam2) { LRESULT ret; - -#define XX(x) case x: TRACE("(%p,"#x",0x%08lx,0x%08lx)\n",whic,lParam1,lParam2); break; - + +#define XX(x) case x: TRACE("(%p,"#x",0x%08lx,0x%08lx)\n",whic,lParam1,lParam2); break + switch (msg) { /* DRV_* */ XX(DRV_LOAD); -- 2.32.0.93.g670b81a890