Module: wine Branch: master Commit: 897a235e709ed7fbf2d8820775916e7863e59674 URL: http://source.winehq.org/git/wine.git/?a=commit;h=897a235e709ed7fbf2d8820775...
Author: Andrew Talbot andrew.talbot@talbotville.com Date: Wed Dec 24 18:13:24 2008 +0000
wineoss: Remove a superfluous semicolon.
---
dlls/wineoss.drv/mixer.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/wineoss.drv/mixer.c b/dlls/wineoss.drv/mixer.c index 241aa0c..58433e6 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);