In libiberty/argv.c line 313, function writeargv(), the line "int ret" declares a variable that is never used in that function. This triggers a warning during compilation. The following patch should remove that line: Index: libiberty/argv.c =================================================================== --- libiberty/argv.c (revision 126005) +++ libiberty/argv.c (working copy) @@ -310,7 +310,6 @@ writeargv (char **argv, FILE *f) while (*argv != NULL) { - int ret; const char *arg = *argv; while (*arg != EOS)
Ok to commit it.
Fixed by: 2007-07-02 Simon Baldwin <simonb@google.com> * argv.c (writeargv): Removed declaration of unused variable.