msvcrt: Remove a superfluous semicolon

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


Changelog:
    msvcrt: Remove a superfluous semicolon.

diff --git a/dlls/msvcrt/errno.c b/dlls/msvcrt/errno.c
index 1b5fd96..e52c49d 100644
--- a/dlls/msvcrt/errno.c
+++ b/dlls/msvcrt/errno.c
@@ -129,7 +129,7 @@ void msvcrt_set_errno(int err)
   switch(err)
   {
 #define ERR_CASE(oserr) case oserr:
-#define ERR_MAPS(oserr,crterr) case oserr:*errno = crterr;break;
+#define ERR_MAPS(oserr, crterr) case oserr: *errno = crterr; break
     ERR_CASE(ERROR_ACCESS_DENIED)
     ERR_CASE(ERROR_NETWORK_ACCESS_DENIED)
     ERR_CASE(ERROR_CANNOT_MAKE)



More information about the wine-patches mailing list