Fix compiler warnings in shell
This commit is contained in:
parent
5d67a612b4
commit
fa078381cf
2 changed files with 2 additions and 2 deletions
|
@ -86,7 +86,7 @@ base64_decode_char(char c)
|
|||
static int
|
||||
base64_add_char(struct base64_decoder_state *s, char c)
|
||||
{
|
||||
if(isspace(c)) {
|
||||
if(isspace((int)c)) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue