From: Marko Kreen Date: Thu, 18 Dec 2008 00:16:14 +0000 (+0000) Subject: pgbevent: make g_module static var X-Git-Tag: pgbouncer_1_3_rc1~22 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cffac6811244c6664f799ef4f46c00fd2209c70a;p=pgbouncer pgbevent: make g_module static var --- diff --git a/win32/pgbevent.c b/win32/pgbevent.c index b716f77..41a1811 100644 --- a/win32/pgbevent.c +++ b/win32/pgbevent.c @@ -14,7 +14,7 @@ #define APP_KEY "SYSTEM\\CurrentControlSet\\Services\\EventLog\\Application\\pgbouncer" /* Global variables */ -HANDLE g_module = NULL; /* hModule of DLL */ +static HANDLE g_module = NULL; /* hModule of DLL */ /* Prototypes */ STDAPI DllRegisterServer(void);