diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-10 21:40:19 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-10 21:40:19 +0000 |
commit | c6758a07c68033627a692cda27aebc8f6a662e7f (patch) | |
tree | 51bc0b498a5e16f8041604d913e25708cc76058f /coreutils | |
parent | 335b63d8d1876ce4e172ebcc9d64544785682244 (diff) | |
download | busybox-w32-c6758a07c68033627a692cda27aebc8f6a662e7f.tar.gz busybox-w32-c6758a07c68033627a692cda27aebc8f6a662e7f.tar.bz2 busybox-w32-c6758a07c68033627a692cda27aebc8f6a662e7f.zip |
make compressed help code NOMMU- and NOFORK-friendly -
no forking anymore, bunzip2 unpack routine now does all it in memory.
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/cksum.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/coreutils/cksum.c b/coreutils/cksum.c index 66a255c4e..70febdf3a 100644 --- a/coreutils/cksum.c +++ b/coreutils/cksum.c | |||
@@ -11,8 +11,7 @@ | |||
11 | int cksum_main(int argc, char **argv); | 11 | int cksum_main(int argc, char **argv); |
12 | int cksum_main(int argc, char **argv) | 12 | int cksum_main(int argc, char **argv) |
13 | { | 13 | { |
14 | 14 | uint32_t *crc32_table = crc32_filltable(NULL, 1); | |
15 | uint32_t *crc32_table = crc32_filltable(1); | ||
16 | 15 | ||
17 | FILE *fp; | 16 | FILE *fp; |
18 | uint32_t crc; | 17 | uint32_t crc; |