mirror of
https://github.com/weechat/weechat.git
synced 2026-06-29 14:26:39 +02:00
core: fix compilation warning on isdigit function
This commit is contained in:
@@ -3009,7 +3009,7 @@ string_parse_size (const char *size)
|
||||
goto end;
|
||||
|
||||
pos = size;
|
||||
while (isdigit (pos[0]))
|
||||
while (isdigit ((unsigned char)pos[0]))
|
||||
{
|
||||
pos++;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user