From aa03cdc4057ea720ea301651288846f740238d28 Mon Sep 17 00:00:00 2001 From: Chris Pavlina <cpavlin1@binghamton.edu> Date: 周五, 12 12月 2014 17:55:59 +0800 Subject: [PATCH] Fixed type warning --- libscpi/src/utils.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libscpi/src/utils.c b/libscpi/src/utils.c index 8c3cbd6..7c0e55f 100644 --- a/libscpi/src/utils.c +++ b/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; } -- Gitblit v1.9.1