mirror of
https://github.com/weechat/weechat.git
synced 2026-06-29 06:16:40 +02:00
irc: remove compiler warning on isxdigit
This commit is contained in:
@@ -1139,7 +1139,7 @@ irc_config_server_check_value_cb (void *data,
|
||||
}
|
||||
for (j = 0; j < length; j++)
|
||||
{
|
||||
if (!isxdigit (fingerprints[i][j]))
|
||||
if (!isxdigit ((unsigned char)fingerprints[i][j]))
|
||||
{
|
||||
rc = -2;
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user