WIN32: Fix plugin provider build for 64bit target.

This commit is contained in:
Johannes Schickel 2016-02-23 22:30:07 +01:00
parent b4318201d4
commit 22a60e6c0b

View file

@ -77,7 +77,7 @@ public:
debug("Failed loading plugin '%s' (error code %d)", _filename.c_str(), (int32) GetLastError()); debug("Failed loading plugin '%s' (error code %d)", _filename.c_str(), (int32) GetLastError());
return false; return false;
} else { } else {
debug(1, "Success loading plugin '%s', handle %08X", _filename.c_str(), (uint32) _dlHandle); debug(1, "Success loading plugin '%s', handle %p", _filename.c_str(), _dlHandle);
} }
return DynamicPlugin::loadPlugin(); return DynamicPlugin::loadPlugin();