summaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
authorLukasz Stanislawski <l.stanislaws@samsung.com>2016-02-19 17:20:33 +0100
committerLukasz Stanislawski <l.stanislaws@samsung.com>2016-02-24 07:51:45 -0800
commitfb67841ab5d5dd1b42b586c685b59def4b97245e (patch)
treef44912e2d23eaaf944edb8727707f2951db25c69 /src/modules
parentb5faca73e7611734a482f6a91bf2b810c93c2494 (diff)
downloadindicator-win-fb67841ab5d5dd1b42b586c685b59def4b97245e.tar.gz
indicator-win-fb67841ab5d5dd1b42b586c685b59def4b97245e.tar.bz2
indicator-win-fb67841ab5d5dd1b42b586c685b59def4b97245e.zip
modules/connection: fix error log.
Change-Id: I671fb6c34eb6e574fc0e070d38cfcb2b3c2d7e4e
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/connection/connection.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/connection/connection.c b/src/modules/connection/connection.c
index 4a993f2..8feb93c 100644
--- a/src/modules/connection/connection.c
+++ b/src/modules/connection/connection.c
@@ -479,7 +479,7 @@ static int register_conn_module(void *data)
ret = telephony_get_state(&state);
if (ret != TELEPHONY_ERROR_NONE) {
- ERR("telephony_get_state failed: %d", get_error_message(ret));
+ ERR("telephony_get_state failed: %s", get_error_message(ret));
return FAIL;
}
@@ -494,7 +494,7 @@ static int register_conn_module(void *data)
ret = telephony_set_state_changed_cb(tel_ready_cb, data);
if (ret != TELEPHONY_ERROR_NONE) {
- ERR("telephony_set_state_changed_cb failed %d", get_error_message(ret));
+ ERR("telephony_set_state_changed_cb failed %s", get_error_message(ret));
__deinit_tel();
return FAIL;
}