[Scummvm-cvs-logs] scummvm master -> 22a60e6c0bf75098964ee0a73c60d28715b7a10f

lordhoto lordhoto at gmail.com
Tue Feb 23 22:32:19 CET 2016


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
22a60e6c0b WIN32: Fix plugin provider build for 64bit target.


Commit: 22a60e6c0bf75098964ee0a73c60d28715b7a10f
    https://github.com/scummvm/scummvm/commit/22a60e6c0bf75098964ee0a73c60d28715b7a10f
Author: Johannes Schickel (lordhoto at scummvm.org)
Date: 2016-02-23T22:31:30+01:00

Commit Message:
WIN32: Fix plugin provider build for 64bit target.

Changed paths:
    backends/plugins/win32/win32-provider.cpp



diff --git a/backends/plugins/win32/win32-provider.cpp b/backends/plugins/win32/win32-provider.cpp
index 5f4d405..ae8a5f0 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();






More information about the Scummvm-git-logs mailing list