summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-11 15:58:21 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-12 15:07:20 +0100
commitbf35ea1dea48cfc5617e116c1f638f787f349855 (patch)
treee4a64eb50309fcd55436db852b35b1c6761aca44 /sal
parenta5ead0559d5b920db7ab9638f60d79c7f87c07c5 (diff)
-Werror,-Wextern-initializer
Change-Id: I334c0a5004fa417f1cb3b1e768988644c712be7f
Diffstat (limited to 'sal')
-rw-r--r--sal/osl/w32/dllentry.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/osl/w32/dllentry.c b/sal/osl/w32/dllentry.c
index 95b805f257f9..c6e4fb6494ba 100644
--- a/sal/osl/w32/dllentry.c
+++ b/sal/osl/w32/dllentry.c
@@ -70,7 +70,7 @@ _pRawDllMain()
*/
static BOOL WINAPI _RawDllMain( HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved );
-extern BOOL (WINAPI *_pRawDllMain)(HINSTANCE, DWORD, LPVOID) = _RawDllMain;
+BOOL (WINAPI *_pRawDllMain)(HINSTANCE, DWORD, LPVOID) = _RawDllMain;
#endif