summaryrefslogtreecommitdiffstats
path: root/read_fru_data.cpp
diff options
context:
space:
mode:
authorJoseph Reynolds <jrey@us.ibm.com>2018-05-30 11:51:28 -0500
committerJoseph Reynolds <jrey@us.ibm.com>2018-05-31 09:33:25 -0500
commit510eb9cc13a9437f9fc4965c080be8136d5e1320 (patch)
tree5608a089b8f0a12bd8f80d607e3a4e1246734a15 /read_fru_data.cpp
parent6706c1cc30f4f98040d6628f9f15c4513eef2d21 (diff)
downloadphosphor-host-ipmid-510eb9cc13a9437f9fc4965c080be8136d5e1320.tar.gz
phosphor-host-ipmid-510eb9cc13a9437f9fc4965c080be8136d5e1320.zip
Use s.c_str() in log messages
Fixes issues with data passed to phosphor::logging::log(entry()). This is part of a series of commits that resolves openbmc 2905. Tested: static_assert only Change-Id: I9fac771f54e4acbec97ce1360c106b6e3eb4fe9d Signed-off-by: Joseph Reynolds <jrey@us.ibm.com>
Diffstat (limited to 'read_fru_data.cpp')
-rw-r--r--read_fru_data.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/read_fru_data.cpp b/read_fru_data.cpp
index a1bced9..5133612 100644
--- a/read_fru_data.cpp
+++ b/read_fru_data.cpp
@@ -55,8 +55,8 @@ ipmi::PropertyMap readAllProperties(const std::string& intf,
{
//If property is not found simply return empty value
log<level::ERR>("Error in reading property values from inventory",
- entry("INTERFACE=%s", intf),
- entry("PATH=%s", objPath));
+ entry("INTERFACE=%s", intf.c_str()),
+ entry("PATH=%s", objPath.c_str()));
return properties;
}
reply.read(properties);
OpenPOWER on IntegriCloud