wineoss: Remove a superfluous semicolon

Andrew Talbot andrew.talbot at talbotville.com
Wed Dec 24 12:13:24 CST 2008


Changelog:
    wineoss: Remove a superfluous semicolon.

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);



More information about the wine-patches mailing list