diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-08-20 11:43:31 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-08-20 11:43:31 +0000 |
commit | 87ad7ace1807dcfbf6aafaceb76b84240e1f88c4 (patch) | |
tree | 0e34de104f7956a1eb82b97c9556e98c42877fa4 | |
parent | 35153eb52487219ef2bce9b7cd57db38909cab44 (diff) |
prevent compiler warnings
-rw-r--r-- | lib/dllinit.c | 3 |
1 files changed, 3 insertions, 0 deletions
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) { |