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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=87ad7ace1807dcfbf6aafaceb76b84240e1f88c4;p=thirdparty%2Fcurl.git prevent compiler warnings --- diff --git a/lib/dllinit.c b/lib/dllinit.c index 5d2da2c9a9..0accb1d646 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) {