From 1cf6278fb1a93c22197c814981fb2a0f9e9a2d48 Mon Sep 17 00:00:00 2001 From: Kostas Nakos Date: Sun, 2 Dec 2007 12:08:45 +0000 Subject: fixes for cygwin build svn-id: r29700 --- backends/plugins/win32/win32-provider.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'backends/plugins') 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(); -- cgit v1.2.3