diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2020-12-21 07:45:08 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2020-12-21 07:45:08 +0100 |
commit | 901d2c3862e0aaf96fc38ab32bdf1aa3f7f509d2 (patch) | |
tree | fdd309545ba0322f33f73c82d5eb640158404a95 | |
parent | 3e544d6ec778fd1f9c4e425e279660fa6f66c3ac (diff) | |
download | busybox-w32-901d2c3862e0aaf96fc38ab32bdf1aa3f7f509d2.tar.gz busybox-w32-901d2c3862e0aaf96fc38ab32bdf1aa3f7f509d2.tar.bz2 busybox-w32-901d2c3862e0aaf96fc38ab32bdf1aa3f7f509d2.zip |
factor: fix typo in undef
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | coreutils/factor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/factor.c b/coreutils/factor.c index 1f9a13f94..27f26fe3f 100644 --- a/coreutils/factor.c +++ b/coreutils/factor.c | |||
@@ -82,7 +82,7 @@ static const uint64_t packed_wheel[] = { | |||
82 | P( 4, 6, 2, 4, 6, 2, 6, 6, 4, 2, 4, 6, 2, 6, 4, 2, 4,12, 2,12), //24 | 82 | P( 4, 6, 2, 4, 6, 2, 6, 6, 4, 2, 4, 6, 2, 6, 4, 2, 4,12, 2,12), //24 |
83 | }; | 83 | }; |
84 | #undef P | 84 | #undef P |
85 | #undef r | 85 | #undef R |
86 | #define WHEEL_START 5 | 86 | #define WHEEL_START 5 |
87 | #define WHEEL_SIZE (5 + 24 * 20) | 87 | #define WHEEL_SIZE (5 + 24 * 20) |
88 | #define wheel_tab ((uint8_t*)&bb_common_bufsiz1) | 88 | #define wheel_tab ((uint8_t*)&bb_common_bufsiz1) |