From bae57b5a3c9fac14de4f0bb685958cb68937dc4d Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Wed, 26 Oct 2016 10:13:03 +0200 Subject: misc: fix unsigned int usage for ctype.h functions Reported-by: "Yuriy M. Kaminskiy" Signed-off-by: Karel Zak --- disk-utils/partx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'disk-utils/partx.c') diff --git a/disk-utils/partx.c b/disk-utils/partx.c index 46224a3f0..cff160fbe 100644 --- a/disk-utils/partx.c +++ b/disk-utils/partx.c @@ -193,10 +193,10 @@ static int get_partno_from_device(char *partition, dev_t devno) sz = strlen(partition); p = partition + sz - 1; - if (!isdigit((unsigned int) *p)) + if (!isdigit((unsigned char) *p)) goto err; - while (isdigit((unsigned int) *(p - 1))) p--; + while (isdigit((unsigned char) *(p - 1))) p--; errno = 0; partno = strtol(p, &end, 10); -- cgit v1.2.3-55-g7522