Fix compiler warning

mifare_desfire_error.c:35: warning: initialization discards qualifiers
from pointer target type
mifare_desfire_error.c:36: warning: initialization discards qualifiers
from pointer target type
etc...
This commit is contained in:
Ludovic Rousseau 2012-05-18 16:28:41 +00:00
parent f60bb7e613
commit 5a5e061e68

View file

@ -30,7 +30,7 @@
static struct error_message { static struct error_message {
uint8_t code; uint8_t code;
char *message; const char *message;
} error_messages[] = { } error_messages[] = {
EM(OPERATION_OK), EM(OPERATION_OK),
EM(NO_CHANGES), EM(NO_CHANGES),