summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorprachi kumar <prachi.kumar@samsung.com>2018-12-07 23:40:19 +0530
committerprachi kumar <prachi.kumar@samsung.com>2018-12-07 23:40:43 +0530
commit9e7db2b79b78da7ace64240b031fe6dadb976d1a (patch)
treef234c8ae62a48a14dce920930609c2b79f55e632
parentb61a599cd9ebd45b831ff2796f939196bc01203b (diff)
downloadattach-panel-document-tizen_5.5.tar.gz
attach-panel-document-tizen_5.5.tar.bz2
attach-panel-document-tizen_5.5.zip
Fixed build break due to https://review.tizen.org/gerrit/#/c/platform/core/system/dlog/+/194581/ Change-Id: I6c5b8dcad31e002c5be97ac0b4d39d5be0436ef6
-rw-r--r--src/doc-list.c2
-rw-r--r--src/doc-local-data.c4
-rw-r--r--src/doc-util.c2
3 files changed, 4 insertions, 4 deletions
diff --git a/src/doc-list.c b/src/doc-list.c
index 201484a..c974c77 100644
--- a/src/doc-list.c
+++ b/src/doc-list.c
@@ -691,7 +691,7 @@ static void _doc_list_move_stop_cb(void *data, Evas_Object * obj, void *ei)
int _doc_ui_update_label_text(Elm_Object_Item * nf_it, int sel_cnt)
{
DOC_CHECK_VAL(nf_it, -1);
- doc_sdbg("Count: %d, text: %s", sel_cnt);
+ doc_sdbg("Count: %d", sel_cnt);
char *pd_selected = DOC_STR_PD_SELECTED;
/* Update the label text */
diff --git a/src/doc-local-data.c b/src/doc-local-data.c
index bce2869..dcf618b 100644
--- a/src/doc-local-data.c
+++ b/src/doc-local-data.c
@@ -285,7 +285,7 @@ int doc_local_data_get_all_media_count(doc_filter_s * condtion,
doc_data_util_destroy_filter(filter);
if (ret != MEDIA_CONTENT_ERROR_NONE) {
- doc_dbgE("Get media count failed[d]!", ret);
+ doc_dbgE("Get media count failed[%d]!", ret);
return -1;
}
@@ -321,7 +321,7 @@ int doc_local_data_get_all_folders_media_list(doc_filter_s * condition,
doc_data_util_destroy_filter(filter);
if (ret != MEDIA_CONTENT_ERROR_NONE) {
- doc_dbgE("Get all medias failed[d]!", ret);
+ doc_dbgE("Get all medias failed[%d]!", ret);
return -1;
}
diff --git a/src/doc-util.c b/src/doc-util.c
index fd41d7b..26b3f86 100644
--- a/src/doc-util.c
+++ b/src/doc-util.c
@@ -132,7 +132,7 @@ int doc_atoi(const char *number)
if ((errno == ERANGE && (val == LONG_MAX || val == LONG_MIN))
|| (errno != 0 && val == 0)) {
- doc_dbgE("strtol, val = %d", val);
+ doc_dbgE("strtol, val = %ld", val);
return -1;
}