summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
}