trim: avoid a warning from -O2 -Wstrict-overflow
authorJim Meyering <meyering@redhat.com>
Sat, 28 May 2011 14:00:20 +0000 (16:00 +0200)
committerJim Meyering <meyering@redhat.com>
Sun, 29 May 2011 17:32:25 +0000 (19:32 +0200)
* lib/trim.c (trim2): Declare local to be "unsigned int", not "int".

ChangeLog
lib/trim.c

index 69c052c2b0232c549a5e154099ec5dbe083763fb..5de6fa7ff65172084b84b72ace105a6df99f2099 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2011-05-28  Jim Meyering  <meyering@redhat.com>
+
+       trim: avoid a warning from -O2 -Wstrict-overflow
+       * lib/trim.c (trim2): Declare local to be "unsigned int", not "int".
+
 2011-05-29  Bruno Haible  <bruno@clisp.org>
 
        gnulib-tool: Fix bug in yesterday's commit.
index 1f4d0c131fb0b4a5f3281451ac4feb70fa5426bc..6515cfaff2808583bfbcbbd2726c2aab070a003b 100644 (file)
@@ -65,7 +65,7 @@ trim2 (const char *s, int how)
       /* Trim trailing whitespaces. */
       if (how != TRIM_LEADING)
         {
-          int state = 0;
+          unsigned int state = 0;
           char *r IF_LINT (= NULL); /* used only while state = 2 */
 
           mbi_init (i, d, strlen (d));
@@ -130,4 +130,3 @@ trim2 (const char *s, int how)
 
   return d;
 }
-