diff options
author | Rob Landley <rob@landley.net> | 2006-08-21 16:03:38 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-08-21 16:03:38 +0000 |
commit | 1ffe1ede543ff1155b02c5a578fc21a881ac8c00 (patch) | |
tree | abb06b8e4679ce0749f50548b9b116be4f0bcc5e | |
parent | 43ee36c6dae2c0108580f646913514050e2ef59f (diff) | |
download | busybox-w32-1ffe1ede543ff1155b02c5a578fc21a881ac8c00.tar.gz busybox-w32-1ffe1ede543ff1155b02c5a578fc21a881ac8c00.tar.bz2 busybox-w32-1ffe1ede543ff1155b02c5a578fc21a881ac8c00.zip |
Oops, Michael pointed out that my cleanup left some dead code in there.
-rw-r--r-- | miscutils/readahead.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/miscutils/readahead.c b/miscutils/readahead.c index 9f1bb47be..8221bb4be 100644 --- a/miscutils/readahead.c +++ b/miscutils/readahead.c | |||
@@ -15,7 +15,6 @@ | |||
15 | int readahead_main(int argc, char **argv) | 15 | int readahead_main(int argc, char **argv) |
16 | { | 16 | { |
17 | FILE *f; | 17 | FILE *f; |
18 | struct stat stat_buf; | ||
19 | int retval = EXIT_SUCCESS; | 18 | int retval = EXIT_SUCCESS; |
20 | 19 | ||
21 | if (argc == 1) bb_show_usage(); | 20 | if (argc == 1) bb_show_usage(); |
@@ -24,7 +23,6 @@ int readahead_main(int argc, char **argv) | |||
24 | if ((f = bb_wfopen(*argv, "r")) != NULL) { | 23 | if ((f = bb_wfopen(*argv, "r")) != NULL) { |
25 | int r, fd=fileno(f); | 24 | int r, fd=fileno(f); |
26 | 25 | ||
27 | xstat(*argv, &stat_buf); | ||
28 | r = readahead(fd, 0, fdlength(fd)); | 26 | r = readahead(fd, 0, fdlength(fd)); |
29 | fclose(f); | 27 | fclose(f); |
30 | if (r >= 0) continue; | 28 | if (r >= 0) continue; |