aboutsummaryrefslogtreecommitdiffstats
path: root/src/wm_layer_control.cpp
diff options
context:
space:
mode:
authorKazumasa Mitsunari <knimitz@witz-inc.co.jp>2019-01-25 13:41:10 +0900
committerKazumasa Mitsunari <knimitz@witz-inc.co.jp>2019-01-25 13:41:10 +0900
commitef03209fb7961d83daa30af74689acaa7a3bbbc2 (patch)
tree50e9ab8fb2af71df61a641df82c9faf27c5555f2 /src/wm_layer_control.cpp
parentceb1049ca57b0fd0ce41e9eca631557ffa46993a (diff)
Output debug message corerctly
Fix the mistake of passing std::string into %s. Change-Id: I267feba5ed8239d146506721363f5bebcdaafa42 Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
Diffstat (limited to 'src/wm_layer_control.cpp')
-rw-r--r--src/wm_layer_control.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wm_layer_control.cpp b/src/wm_layer_control.cpp
index 28d409f..c5c7913 100644
--- a/src/wm_layer_control.cpp
+++ b/src/wm_layer_control.cpp
@@ -278,7 +278,7 @@ void LayerControl::undoUpdate()
WMError LayerControl::loadLayerSetting(const string &path)
{
- HMI_DEBUG("loading WMLayer(Application Containers) Setting from %s", path);
+ HMI_DEBUG("loading WMLayer(Application Containers) Setting from %s", path.c_str());
json_object *json_obj, *json_cfg;
int ret = jh::inputJsonFilie(path.c_str(), &json_obj);