diff --git a/qtbase/src/plugins/platforms/windows/qwin10helpers.cpp b/qtbase/src/plugins/platforms/windows/qwin10helpers.cpp index cbe4fa89..3bbc974b 100644 --- a/qtbase/src/plugins/platforms/windows/qwin10helpers.cpp +++ b/qtbase/src/plugins/platforms/windows/qwin10helpers.cpp @@ -71,7 +71,7 @@ void * WIN_LoadComBaseFunction(const char *name) s_bLoaded = true; } if (s_hComBase) { - return ::GetProcAddress(s_hComBase, name); + return (void *) ::GetProcAddress(s_hComBase, name); } else { return NULL; }