Module: wine Branch: master Commit: 6e59407e1c5d9081dcea1049d322c1edf1d67a34 URL: http://source.winehq.org/git/wine.git/?a=commit;h=6e59407e1c5d9081dcea1049d3...
Author: Andrew Talbot andrew.talbot@talbotville.com Date: Mon Dec 22 20:22:10 2008 +0000
msvfw32: Remove superfluous semicolon.
---
dlls/msvfw32/msvideo_main.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dlls/msvfw32/msvideo_main.c b/dlls/msvfw32/msvideo_main.c index fa02716..247c00e 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);