Fixed type warningisdigit() expects int, not char
libscpi/src/utils.c @@ -179,7 +179,7 @@ } for (i = len1; i<len2; i++) { if (!isdigit(str2[i])) { if (!isdigit((int) str2[i])) { result = FALSE; break; }