diff options
author | saerome kim <saerome.kim@samsung.com> | 2018-12-10 14:39:11 +0900 |
---|---|---|
committer | saerome kim <saerome.kim@samsung.com> | 2018-12-10 14:39:11 +0900 |
commit | da639f8363555d28918087d343b1c4c17298d40c (patch) | |
tree | 58c57bf8a7b435ffb564d82b79c5b50b8a286575 | |
parent | 0245b334f04336ad6259d2e471544ecf8a9ffc50 (diff) | |
download | zigbee-da639f8363555d28918087d343b1c4c17298d40c.tar.gz zigbee-da639f8363555d28918087d343b1c4c17298d40c.tar.bz2 zigbee-da639f8363555d28918087d343b1c4c17298d40c.zip |
Fix dlog format: errnosubmit/tizen/20181210.055506accepted/tizen/unified/20181210.152253
Change-Id: I7ac9dc996e2a1bdb9d9cdf8bf170949da18ccccc
Signed-off-by: Taesoo Jun <steve.jun@samsung.com>
-rw-r--r-- | src/zbl-dbus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zbl-dbus.c b/src/zbl-dbus.c index 13cf25b..250fcd6 100644 --- a/src/zbl-dbus.c +++ b/src/zbl-dbus.c @@ -2858,7 +2858,7 @@ static void __zbl_zcl_global_read_config_reporting_req(zbl_req_cb_s *container, status = calloc(record_length, sizeof(unsigned char)); data_size = calloc(record_length, sizeof(unsigned char)); if (!status || !data_size) { - ERR("Couldn't allocate the memory (%0x02X)", errno); + ERR("Couldn't allocate the memory (%s)", strerror(errno)); goto GLOBAL_READ_CONFIGURE_REPORTING_REQ_OUT; } |