From: Paul Eggert Date: Mon, 2 Aug 2004 22:59:41 +0000 (+0000) Subject: unsigned -> unsigned int X-Git-Tag: v5.3.0~908 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3afb4dad992fc1cde1642bf96e8ea4aa5fd5aabf;p=thirdparty%2Fcoreutils.git unsigned -> unsigned int --- diff --git a/lib/strverscmp.c b/lib/strverscmp.c index df4f5c08a9..83b7f90bd6 100644 --- a/lib/strverscmp.c +++ b/lib/strverscmp.c @@ -1,5 +1,5 @@ /* Compare strings while treating digits characters numerically. - Copyright (C) 1997, 2000, 2002 Free Software Foundation, Inc. + Copyright (C) 1997, 2000, 2002, 2004 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jean-François Bignolles , 1997. @@ -43,7 +43,7 @@ POSIX says that only '0' through '9' are digits. Prefer ISDIGIT to ISDIGIT_LOCALE unless it's important to use the locale's definition of `digit' even when the host does not conform to POSIX. */ -#define ISDIGIT(c) ((unsigned) (c) - '0' <= 9) +#define ISDIGIT(c) ((unsigned int) (c) - '0' <= 9) #undef __strverscmp #undef strverscmp