summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-11 15:56:52 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-12 15:07:19 +0100
commita5ead0559d5b920db7ab9638f60d79c7f87c07c5 (patch)
treec74538ae8a42edb4b754502ae2fb9257eeaee276 /sal
parent97b201f6ba667fdf4ff19bcc73bbbbf51f567a68 (diff)
-Werror,-Wincompatible-pointer-types
Change-Id: If126707fe637917a5f73950c751a97c30ad2e692
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 1a113b3c5da9..95b805f257f9 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)(HANDLE, DWORD, LPVOID) = _RawDllMain;
+extern BOOL (WINAPI *_pRawDllMain)(HINSTANCE, DWORD, LPVOID) = _RawDllMain;
#endif