]> git.ozlabs.org Git - yaboot.git/commitdiff
warnings: Update scopy() to explictly throw away computed value.
authorTony Breeds <tony@bakeyournoodle.com>
Tue, 18 Oct 2011 00:47:38 +0000 (11:47 +1100)
committerTony Breeds <tony@bakeyournoodle.com>
Tue, 18 Oct 2011 04:11:10 +0000 (15:11 +1100)
Also update the comment to match the code.

Signed-off-by: Tony Breeds <tony@bakeyournoodle.com>
second/file.c

index a52b664e8900c6e789764c696f5d4e61ab9fab0d..fd081a3010d3ba4710349144da54ac73fe23cb3f 100644 (file)
@@ -88,7 +88,7 @@ static char * is_valid_ipv4_str(char *str)
 
 
 /*
 
 
 /*
- * Copy the string from source to dest till newline or comma(,) is seen
+ * Copy the string from source to dest until the end of string or comma is seen
  * in the source.
  * Move source and dest pointers respectively.
  * Returns pointer to the start of the string that has just been copied.
  * in the source.
  * Move source and dest pointers respectively.
  * Returns pointer to the start of the string that has just been copied.
@@ -104,9 +104,9 @@ scopy(char **dest, char **source)
      while (**source != ',' && **source != '\0')
          *(*dest)++ = *(*source)++;
      if (**source != '\0')
      while (**source != ',' && **source != '\0')
          *(*dest)++ = *(*source)++;
      if (**source != '\0')
-         *(*source)++;
+         (void)*(*source)++;
      **dest = '\0';
      **dest = '\0';
-     *(*dest)++;
+     (void)*(*dest)++;
      return ret;
 }
 
      return ret;
 }