From 2d50946e069c3988ad400e14e1585fb4818f2471 Mon Sep 17 00:00:00 2001 From: Andrew Talbot Date: Sat, 24 Nov 2012 21:09:42 +0000 Subject: [PATCH] ntprint: Remove unused variable. --- dlls/ntprint/ntprint.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/dlls/ntprint/ntprint.c b/dlls/ntprint/ntprint.c index b8166661854..a5431b6f8c2 100644 --- a/dlls/ntprint/ntprint.c +++ b/dlls/ntprint/ntprint.c @@ -36,8 +36,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(ntprint); -static HINSTANCE NTPRINT_hInstance = NULL; - typedef struct { LPMONITOR_INFO_2W mi2; /* Buffer for installed Monitors */ DWORD installed; /* Number of installed Monitors */ @@ -56,7 +54,6 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) return FALSE; /* prefer native version */ case DLL_PROCESS_ATTACH: - NTPRINT_hInstance = hinstDLL; DisableThreadLibraryCalls( hinstDLL ); break; }