From 897a235e709ed7fbf2d8820775916e7863e59674 Mon Sep 17 00:00:00 2001 From: Andrew Talbot Date: Wed, 24 Dec 2008 18:13:24 +0000 Subject: [PATCH] wineoss: Remove a superfluous semicolon. --- dlls/wineoss.drv/mixer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/wineoss.drv/mixer.c b/dlls/wineoss.drv/mixer.c index 241aa0c2cd7..58433e656dd 100644 --- a/dlls/wineoss.drv/mixer.c +++ b/dlls/wineoss.drv/mixer.c @@ -179,7 +179,7 @@ static const char * getIoctlCommand(int command) static const char * getControlType(DWORD dwControlType) { static char str[64]; -#define TYPE_TO_STR(x) case x: return #x; +#define TYPE_TO_STR(x) case x: return #x switch (dwControlType) { TYPE_TO_STR(MIXERCONTROL_CONTROLTYPE_CUSTOM); TYPE_TO_STR(MIXERCONTROL_CONTROLTYPE_BOOLEANMETER); -- 2.11.4.GIT