Andrew Talbot : ws2_32: Mark a fall-through in a switch statement.

Alexandre Julliard julliard at winehq.org
Fri Oct 21 11:01:59 CDT 2011


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

Author: Andrew Talbot <andrew.talbot at talbotville.com>
Date:   Thu Oct 20 21:37:04 2011 +0100

ws2_32: Mark a fall-through in a switch statement.

---

 dlls/ws2_32/socket.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/dlls/ws2_32/socket.c b/dlls/ws2_32/socket.c
index 7a1947f..e8f781f 100644
--- a/dlls/ws2_32/socket.c
+++ b/dlls/ws2_32/socket.c
@@ -4345,6 +4345,7 @@ int WINAPI WS_shutdown(SOCKET s, int how)
         break;
     case 2: /* drop all */
         clear_flags |= FD_READ|FD_WRITE;
+        /*fall through */
     default:
         clear_flags |= FD_WINE_LISTENING;
     }




More information about the wine-cvs mailing list