From: Glenn L McGrath Date: Wed, 3 Mar 2004 21:12:16 +0000 (-0000) Subject: Fix a compile error identiefied by Steven Scholz. X-Git-Tag: 1_00_pre9~98 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=bbf2ce36d841fe53689516f6e52751e5f59ad393;p=oweals%2Fbusybox.git Fix a compile error identiefied by Steven Scholz. Declare variables first for compatability. --- diff --git a/debianutils/which.c b/debianutils/which.c index 1e9d276fd..ccfd16344 100644 --- a/debianutils/which.c +++ b/debianutils/which.c @@ -56,8 +56,8 @@ extern int which_main(int argc, char **argv) while (argc-- > 0) { char *buf; char *path_n; - argv++; char found = 0; + argv++; /* * Check if we were given the full path, first.