aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authorJohannes Schickel2016-02-23 22:30:07 +0100
committerJohannes Schickel2016-02-23 22:31:30 +0100
commit22a60e6c0bf75098964ee0a73c60d28715b7a10f (patch)
treefefd4371b220d0a2223c1178e31162bb5aaab10f /backends
parentb4318201d47ad63a08feb3c99be0c6b8d69861db (diff)
downloadscummvm-rg350-22a60e6c0bf75098964ee0a73c60d28715b7a10f.tar.gz
scummvm-rg350-22a60e6c0bf75098964ee0a73c60d28715b7a10f.tar.bz2
scummvm-rg350-22a60e6c0bf75098964ee0a73c60d28715b7a10f.zip
WIN32: Fix plugin provider build for 64bit target.
Diffstat (limited to 'backends')
-rw-r--r--backends/plugins/win32/win32-provider.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/plugins/win32/win32-provider.cpp b/backends/plugins/win32/win32-provider.cpp
index 5f4d405da4..ae8a5f0472 100644
--- a/backends/plugins/win32/win32-provider.cpp
+++ b/backends/plugins/win32/win32-provider.cpp
@@ -77,7 +77,7 @@ public:
debug("Failed loading plugin '%s' (error code %d)", _filename.c_str(), (int32) GetLastError());
return false;
} 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();