ws2_32: Mark a fall-through in a switch statement

Andrew Talbot andrew.talbot at talbotville.com
Thu Oct 20 15:37:04 CDT 2011


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

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