mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-14 02:26:59 -07:00
Khorben/warnings (#519)
* Fix warnings and missing #include for <ctype.h> * Avoid a warning in client/util.c
This commit is contained in:
parent
0f112d6f19
commit
3ded0f97d3
8 changed files with 14 additions and 12 deletions
|
@ -306,7 +306,7 @@ static int l_pack(lua_State *L) /** pack(f,...) */
|
|||
sbyte = 0;
|
||||
odd = 0;
|
||||
}
|
||||
} else if (isspace(a[ii])) {
|
||||
} else if (isspace((unsigned char)a[ii])) {
|
||||
/* ignore */
|
||||
} else {
|
||||
/* err ... ignore too*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue