Andrew Talbot : msvcrt: Remove a superfluous semicolon.

Alexandre Julliard julliard at winehq.org
Wed Dec 24 13:18:50 CST 2008


Module: wine
Branch: master
Commit: cb08534a3d6bdaa93b925d598ad98dd0989ed012
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=cb08534a3d6bdaa93b925d598ad98dd0989ed012

Author: Andrew Talbot <andrew.talbot at talbotville.com>
Date:   Wed Dec 24 18:13:12 2008 +0000

msvcrt: Remove a superfluous semicolon.

---

 dlls/msvcrt/errno.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

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-cvs mailing list