1
0
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:
Sébastien Helleu
2022-10-08 12:18:09 +02:00
parent 3932cf5a00
commit 193aa0448f
+1 -1
View File
@@ -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++;
}