Chris Pavlina
2014-11-22 aa03cdc4057ea720ea301651288846f740238d28
Fixed type warning

isdigit() expects int, not char
1个文件已修改
2 ■■■ 已修改文件
libscpi/src/utils.c 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
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;
        }