diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-06-25 10:35:11 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-06-25 10:35:11 +0000 |
commit | 88308fec804a0e1df644c3ef99d339a2e653c0f3 (patch) | |
tree | 7bccb0e4091c6b431da8714f0df6974c29e097b1 /coreutils/test.c | |
parent | 56258b688cc4fb2a5cfacb4e7a17fe51e158c101 (diff) | |
download | busybox-w32-88308fec804a0e1df644c3ef99d339a2e653c0f3.tar.gz busybox-w32-88308fec804a0e1df644c3ef99d339a2e653c0f3.tar.bz2 busybox-w32-88308fec804a0e1df644c3ef99d339a2e653c0f3.zip |
test: suppress gcc warning
telnetd: do not use suferfluous static variable.
Diffstat (limited to 'coreutils/test.c')
-rw-r--r-- | coreutils/test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/test.c b/coreutils/test.c index 5ca46725b..36fb38a64 100644 --- a/coreutils/test.c +++ b/coreutils/test.c | |||
@@ -386,7 +386,7 @@ static int binop(void) | |||
386 | static int filstat(char *nm, enum token mode) | 386 | static int filstat(char *nm, enum token mode) |
387 | { | 387 | { |
388 | struct stat s; | 388 | struct stat s; |
389 | int i; | 389 | int i = i; /* gcc 3.x thinks it can be used uninitialized */ |
390 | 390 | ||
391 | if (mode == FILSYM) { | 391 | if (mode == FILSYM) { |
392 | #ifdef S_IFLNK | 392 | #ifdef S_IFLNK |