From 793b1f7d4dd6b5e8832676f59dd1c6ab38d0ff01 Mon Sep 17 00:00:00 2001 From: Paul Sherwood Date: Sun, 21 Jul 2013 20:12:04 +0000 Subject: fix (int) casts for 64 bit --- SDL_Core/src/components/AppMgr/src/AppMgrCore.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SDL_Core/src/components/AppMgr/src/AppMgrCore.cpp b/SDL_Core/src/components/AppMgr/src/AppMgrCore.cpp index 6d58f4c07..57b76846c 100644 --- a/SDL_Core/src/components/AppMgr/src/AppMgrCore.cpp +++ b/SDL_Core/src/components/AppMgr/src/AppMgrCore.cpp @@ -6783,7 +6783,7 @@ namespace NsAppManager mApplications.insert( std::pair(appId, application) ); LOG4CPLUS_INFO_EXT(mLogger, "\n\t\t\t\tAdded application with appid " << appId << - " to mApplications " << (int)mApplications[appId]); + " to mApplications " << (intptr_t)mApplications[appId]); for( std::map::iterator it = mDevices.begin(); it != mDevices.end(); ++it ) @@ -6851,7 +6851,7 @@ namespace NsAppManager LOG4CPLUS_INFO_EXT(mLogger, "Application created." ); mApplications.insert( std::pair(appId, application) ); LOG4CPLUS_INFO_EXT(mLogger, "\n\t\t\t\tAdded application with appid " << appId << - " to mApplications " << (int)mApplications[appId]); + " to mApplications " << (intptr_t)mApplications[appId]); for( std::map::iterator it = mDevices.begin(); it != mDevices.end(); ++it ) -- cgit v1.2.1