Module: wine Branch: master Commit: cdf091f2c9584994706cfea395131e4f2e8f87b7 URL: http://source.winehq.org/git/wine.git/?a=commit;h=cdf091f2c9584994706cfea395...
Author: Austin English austinenglish@gmail.com Date: Tue Jul 20 23:42:48 2010 -0500
ws2_32: Remove unused variable.
---
dlls/ws2_32/socket.c | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-)
diff --git a/dlls/ws2_32/socket.c b/dlls/ws2_32/socket.c index 2fde6e6..2597c8d 100644 --- a/dlls/ws2_32/socket.c +++ b/dlls/ws2_32/socket.c @@ -3120,15 +3120,13 @@ int WINAPI WS_select(int nfds, WS_fd_set *ws_readfds, static void WS_AddCompletion( SOCKET sock, ULONG_PTR CompletionValue, NTSTATUS CompletionStatus, ULONG Information ) { - NTSTATUS status; - SERVER_START_REQ( add_fd_completion ) { req->handle = wine_server_obj_handle( SOCKET2HANDLE(sock) ); req->cvalue = CompletionValue; req->status = CompletionStatus; req->information = Information; - status = wine_server_call( req ); + wine_server_call( req ); } SERVER_END_REQ; }