diff options
author | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2004-03-03 21:12:16 +0000 |
---|---|---|
committer | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2004-03-03 21:12:16 +0000 |
commit | 97aa297db7679af4e50805ea5be18b0e77c68ebb (patch) | |
tree | 09d9e89e6d5effe9b9790d71848627dc83c5e829 /debianutils | |
parent | 90e651a35a5fba399b84f4760dfbda731eea5ca5 (diff) | |
download | busybox-w32-97aa297db7679af4e50805ea5be18b0e77c68ebb.tar.gz busybox-w32-97aa297db7679af4e50805ea5be18b0e77c68ebb.tar.bz2 busybox-w32-97aa297db7679af4e50805ea5be18b0e77c68ebb.zip |
Fix a compile error identiefied by Steven Scholz.
Declare variables first for compatability.
git-svn-id: svn://busybox.net/trunk/busybox@8570 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'debianutils')
-rw-r--r-- | debianutils/which.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
56 | while (argc-- > 0) { | 56 | while (argc-- > 0) { |
57 | char *buf; | 57 | char *buf; |
58 | char *path_n; | 58 | char *path_n; |
59 | argv++; | ||
60 | char found = 0; | 59 | char found = 0; |
60 | argv++; | ||
61 | 61 | ||
62 | /* | 62 | /* |
63 | * Check if we were given the full path, first. | 63 | * Check if we were given the full path, first. |