diff options
author | Jim Meyering <jim@meyering.net> | 1998-12-31 14:53:16 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1998-12-31 14:53:16 +0000 |
commit | 0f2fbadbeaed5398d0b61f8ed03fd59f1d9de5f5 (patch) | |
tree | 581a212df66d69ae07bedfed492279a292497bee /lib | |
parent | 50225cad77c52a4ef7bfb05b1aa5459ae6e6f479 (diff) | |
download | coreutils-0f2fbadbeaed5398d0b61f8ed03fd59f1d9de5f5.tar.xz |
(posix_time_parse): Change type of index `i' from int to unsigned int.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/posixtm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/posixtm.c b/lib/posixtm.c index 2e3f791f7..062d3a05c 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, '.'))) |