wineoss: Remove a superfluous semicolon.

This commit is contained in:
Andrew Talbot 2008-12-24 18:13:24 +00:00 committed by Alexandre Julliard
parent dcbb91fc92
commit 897a235e70
1 changed files with 1 additions and 1 deletions

View File

@ -179,7 +179,7 @@ static const char * getIoctlCommand(int command)
static const char * getControlType(DWORD dwControlType) static const char * getControlType(DWORD dwControlType)
{ {
static char str[64]; static char str[64];
#define TYPE_TO_STR(x) case x: return #x; #define TYPE_TO_STR(x) case x: return #x
switch (dwControlType) { switch (dwControlType) {
TYPE_TO_STR(MIXERCONTROL_CONTROLTYPE_CUSTOM); TYPE_TO_STR(MIXERCONTROL_CONTROLTYPE_CUSTOM);
TYPE_TO_STR(MIXERCONTROL_CONTROLTYPE_BOOLEANMETER); TYPE_TO_STR(MIXERCONTROL_CONTROLTYPE_BOOLEANMETER);