Andrew Talbot : msvcrt: Remove a superfluous semicolon.

Alexandre Julliard julliard at winehq.org
Sat Oct 8 15:16:36 CDT 2011


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

Author: Andrew Talbot <andrew.talbot at talbotville.com>
Date:   Fri Oct  7 21:24:47 2011 +0100

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 a03b5ef..6094eae 100644
--- a/dlls/msvcrt/errno.c
+++ b/dlls/msvcrt/errno.c
@@ -164,7 +164,7 @@ void msvcrt_set_errno(int err)
     ERR_MAPS(ERROR_INVALID_HANDLE,       MSVCRT_EBADF);
     ERR_CASE(ERROR_OUTOFMEMORY)
     ERR_CASE(ERROR_INVALID_BLOCK)
-    ERR_CASE(ERROR_NOT_ENOUGH_QUOTA);
+    ERR_CASE(ERROR_NOT_ENOUGH_QUOTA)
     ERR_MAPS(ERROR_ARENA_TRASHED,        MSVCRT_ENOMEM);
     ERR_MAPS(ERROR_BUSY,                 MSVCRT_EBUSY);
     ERR_CASE(ERROR_ALREADY_EXISTS)




More information about the wine-cvs mailing list