diff options
Diffstat (limited to 'backends/plugins/win32')
| -rw-r--r-- | backends/plugins/win32/win32-provider.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/plugins/win32/win32-provider.cpp b/backends/plugins/win32/win32-provider.cpp index 85402c8cb8..e20256cd82 100644 --- a/backends/plugins/win32/win32-provider.cpp +++ b/backends/plugins/win32/win32-provider.cpp @@ -86,10 +86,10 @@ public:  		#endif  		if (!_dlHandle) { -			debug("Failed loading plugin '%s' (error code %d)", _filename.c_str(), GetLastError()); +			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(), _dlHandle); +			debug(1, "Success loading plugin '%s', handle %08X", _filename.c_str(), (uint32) _dlHandle);  		}  		return DynamicPlugin::loadPlugin();  | 
