From 538a0e4a9ea04b979a14a32cffcedb0b40554908 Mon Sep 17 00:00:00 2001 From: Andrew Talbot Date: Sat, 24 Nov 2012 21:09:46 +0000 Subject: [PATCH] opengl32: Remove unused variable. --- dlls/opengl32/wgl.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/dlls/opengl32/wgl.c b/dlls/opengl32/wgl.c index 798a0e55fad..1317ff5490c 100644 --- a/dlls/opengl32/wgl.c +++ b/dlls/opengl32/wgl.c @@ -43,8 +43,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(wgl); WINE_DECLARE_DEBUG_CHANNEL(fps); -static HMODULE opengl32_handle; - extern struct opengl_funcs null_opengl_funcs; /* handle management */ @@ -1719,7 +1717,6 @@ BOOL WINAPI DllMain( HINSTANCE hinst, DWORD reason, LPVOID reserved ) switch(reason) { case DLL_PROCESS_ATTACH: - opengl32_handle = hinst; DisableThreadLibraryCalls(hinst); NtCurrentTeb()->glTable = &null_opengl_funcs; break;