listhelpers: satisfy -Werror

Origin commit data
------------------
Branch: ni/coolstream
Commit: 299852d388
Author: vanhofen <vanhofen@gmx.de>
Date: 2016-01-18 (Mon, 18 Jan 2016)

Origin message was:
------------------
- listhelpers: satisfy -Werror

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2016-01-18 13:43:46 +01:00
parent bfdb68d9ca
commit 364954ef6b

View File

@@ -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);