Alexandre Julliard : wininet: Fix a compiler warning on Mingw.

Alexandre Julliard julliard at winehq.org
Fri Jun 15 13:34:41 CDT 2012


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

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Fri Jun 15 17:58:23 2012 +0200

wininet: Fix a compiler warning on Mingw.

---

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

diff --git a/dlls/wininet/http.c b/dlls/wininet/http.c
index 0a3b8fe..baba3d6 100644
--- a/dlls/wininet/http.c
+++ b/dlls/wininet/http.c
@@ -1739,7 +1739,7 @@ static DWORD HTTP_ResolveName(http_request_t *request)
 {
     server_t *server = request->server;
     socklen_t addr_len;
-    const void *addr;
+    void *addr;
 
     if(server->addr_len)
         return ERROR_SUCCESS;




More information about the wine-cvs mailing list