From: Jim Meyering Date: Thu, 31 Dec 1998 14:53:16 +0000 (+0000) Subject: (posix_time_parse): Change type of index `i' from int to unsigned int. X-Git-Tag: FILEUTILS-4_1-b2~95 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0f2fbadbeaed5398d0b61f8ed03fd59f1d9de5f5;p=thirdparty%2Fcoreutils.git (posix_time_parse): Change type of index `i' from int to unsigned int. --- diff --git a/lib/posixtm.c b/lib/posixtm.c index 2e3f791f7e..062d3a05c7 100644 --- a/lib/posixtm.c +++ b/lib/posixtm.c @@ -117,7 +117,7 @@ posix_time_parse (const char *s, unsigned int syntax_bits) const char *dot = NULL; int pair[6]; int *p; - int i; + unsigned int i; size_t s_len = strlen (s); size_t len = (((syntax_bits & PDS_SECONDS) && (dot = strchr (s, '.')))