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:
parent
f60bb7e613
commit
5a5e061e68
1 changed files with 1 additions and 1 deletions
|
@ -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),
|
||||||
|
|
Loading…
Reference in a new issue