ntdll: Remove a superfluous semicolon

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


Changelog:
    ntdll: Remove a superfluous semicolon.

diff --git a/dlls/ntdll/serial.c b/dlls/ntdll/serial.c
index e174c12..dc16cc5 100644
--- a/dlls/ntdll/serial.c
+++ b/dlls/ntdll/serial.c
@@ -87,7 +87,7 @@ static const char* iocode2str(DWORD ioc)
 {
     switch (ioc)
     {
-#define X(x)    case (x): return #x;
+#define X(x)    case (x): return #x
         X(IOCTL_SERIAL_CLEAR_STATS);
         X(IOCTL_SERIAL_CLR_DTR);
         X(IOCTL_SERIAL_CLR_RTS);



More information about the wine-patches mailing list