From 885ed60ea409e147337ea79d10b8a37ad2813915 Mon Sep 17 00:00:00 2001 From: Thilo Graf Date: Thu, 1 Mar 2018 16:55:27 +0100 Subject: [PATCH] cc_frm_footer.cpp: fix possible compiler warning long unsigned int is expected --- src/gui/components/cc_frm_footer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/components/cc_frm_footer.cpp b/src/gui/components/cc_frm_footer.cpp index 815ed36f3..86cc69553 100644 --- a/src/gui/components/cc_frm_footer.cpp +++ b/src/gui/components/cc_frm_footer.cpp @@ -211,7 +211,7 @@ void CComponentsFooter::setButtonLabels(const struct button_label_cc * const con */ if (txt.empty() && icon_name.empty()){ //l_count -= 1; - dprintf(DEBUG_NORMAL, "[CComponentsFooter]\t[%s - %d]\tignore item [%d], no icon and text defined!\n", __func__, __LINE__, i); + dprintf(DEBUG_NORMAL, "[CComponentsFooter]\t[%s - %d]\tignore item [%lu], no icon and text defined!\n", __func__, __LINE__, i); continue; }