summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Dickow <jjdickow@gmail.com>2016-03-29 17:29:44 -0400
committerJustin Dickow <jjdickow@gmail.com>2016-03-29 17:29:44 -0400
commit11fa72bfd22fc0420a40c12cc81f0bef008c46e4 (patch)
tree51eeafa0e4db1819a6c864942e0e5dc846629380
parentea2eaa6a2ac6b4ce59aa3f8e89086aaff1db08b0 (diff)
downloadsdl_core-hotfix/446.tar.gz
Remove line containing PRId64hotfix/446
This was causing issues with certain compilers, and the code is never run.
-rw-r--r--src/components/application_manager/src/message_helper.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/components/application_manager/src/message_helper.cc b/src/components/application_manager/src/message_helper.cc
index adb4f94457..fd42305f77 100644
--- a/src/components/application_manager/src/message_helper.cc
+++ b/src/components/application_manager/src/message_helper.cc
@@ -2596,7 +2596,6 @@ bool MessageHelper::PrintSmartObject(const smart_objects::SmartObject& object) {
break;
}
case NsSmartDeviceLink::NsSmartObjects::SmartType_Integer:
- printf("%" PRId64 "\n", object.asInt64());
break;
case NsSmartDeviceLink::NsSmartObjects::SmartType_String:
printf("%s", object.asString().c_str());