summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Sherwood <paul.sherwood@codethink.co.uk>2013-07-21 20:12:04 +0000
committerPaul Sherwood <paul.sherwood@codethink.co.uk>2013-07-30 13:16:26 +0000
commit793b1f7d4dd6b5e8832676f59dd1c6ab38d0ff01 (patch)
tree73ebfab3f9520584315a7ec1411c74d3a9904cb8
parent3692dc457e9a8353bce90e9c1d479cfd8cf3e7db (diff)
downloadsmartdevicelink-baserock/morph.tar.gz
fix (int) casts for 64 bitbaserock/morph
-rw-r--r--SDL_Core/src/components/AppMgr/src/AppMgrCore.cpp4
1 files 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<int, Application*>(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<int, DeviceStorage>::iterator it = mDevices.begin();
it != mDevices.end();
++it )
@@ -6851,7 +6851,7 @@ namespace NsAppManager
LOG4CPLUS_INFO_EXT(mLogger, "Application created." );
mApplications.insert( std::pair<int, Application*>(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<int, DeviceStorage>::iterator it = mDevices.begin();
it != mDevices.end();
++it )