From 299852d3886276d04a775aa2d93a009b8dce6dfa Mon Sep 17 00:00:00 2001 From: svenhoefer Date: Mon, 18 Jan 2016 13:43:46 +0100 Subject: [PATCH] - listhelpers: satisfy -Werror --- src/gui/widget/listhelpers.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/widget/listhelpers.cpp b/src/gui/widget/listhelpers.cpp index 9d3adf3ab..45af70358 100644 --- a/src/gui/widget/listhelpers.cpp +++ b/src/gui/widget/listhelpers.cpp @@ -33,7 +33,7 @@ static int upDownKey(int size, neutrino_msg_t msg, int lines, int sel) return -1; if (msg >= CRCInput::RC_MaxRC) { - printf("CListHelpers:%s: invalid key? 0x%lx\n", __func__, msg); + printf("CListHelpers:%s: invalid key? 0x%X\n", __func__, msg); return -1; } int key = (int)msg; @@ -46,7 +46,7 @@ static int upDownKey(int size, neutrino_msg_t msg, int lines, int sel) else if (msg == CRCInput::RC_down) step = 1; else { - printf("CListHelpers:%s: invalid key? 0x%lx\n", __func__, msg); + printf("CListHelpers:%s: invalid key? 0x%X\n", __func__, msg); return -1; } // printf("CListHelpers:%s: key 0x%04lx lines %d size %d sel %d\n", __func__, msg, lines, size, sel);