From c4bade8726701ae95d9fe22f1e1aeba462dc9f0b Mon Sep 17 00:00:00 2001 From: Nigel Stewart Date: Fri, 19 Feb 2016 22:30:48 +1000 Subject: [PATCH] Resolve some gcc compilation warnings --- auto/src/glew_init_tail.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/auto/src/glew_init_tail.c b/auto/src/glew_init_tail.c index c7be402..e21ce96 100644 --- a/auto/src/glew_init_tail.c +++ b/auto/src/glew_init_tail.c @@ -59,6 +59,9 @@ GLenum GLEWAPIENTRY glewInit (void) /* Types extracted from windows.h to avoid polluting the rest of the file. */ int __stdcall DllMainCRTStartup(void* instance, unsigned reason, void* reserved) { + (void) instance; + (void) reason; + (void) reserved; return 1; } #endif