From: Daniel Stenberg Date: Tue, 20 Aug 2002 11:43:31 +0000 (+0000) Subject: prevent compiler warnings X-Git-Tag: curl-7_10~99 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=87ad7ace1807dcfbf6aafaceb76b84240e1f88c4;p=curl prevent compiler warnings --- diff --git a/lib/dllinit.c b/lib/dllinit.c index 5d2da2c9a..0accb1d64 100644 --- a/lib/dllinit.c +++ b/lib/dllinit.c @@ -64,6 +64,9 @@ DllMain ( DWORD reason /* Reason this function is being called. */ , LPVOID reserved /* Not used. */ ) { + /* prevent compiler warnings */ + (void) hInst; + (void) reserved; switch (reason) {