diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2018-12-05 20:33:23 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-12-05 20:33:23 +0100 |
commit | aad652a69a77401c83546c64fd9ef96bc3c953f1 (patch) | |
tree | 73601cf2aed9ceca8622330f516de3dd66cec819 /miscutils/bc.c | |
parent | 452df923f7f5ae47f3076d7da562946af6123ca9 (diff) | |
download | busybox-w32-aad652a69a77401c83546c64fd9ef96bc3c953f1.tar.gz busybox-w32-aad652a69a77401c83546c64fd9ef96bc3c953f1.tar.bz2 busybox-w32-aad652a69a77401c83546c64fd9ef96bc3c953f1.zip |
bc: remove unused strings
text data bss dec hex filename
987088 485 7296 994869 f2e35 busybox_old
987079 485 7296 994860 f2e2c busybox_unstripped
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to '')
-rw-r--r-- | miscutils/bc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/miscutils/bc.c b/miscutils/bc.c index b454d4b2b..0908d7cb9 100644 --- a/miscutils/bc.c +++ b/miscutils/bc.c | |||
@@ -5827,9 +5827,9 @@ static BcStatus bc_program_assign(char inst) | |||
5827 | static const char *const msg[] = { | 5827 | static const char *const msg[] = { |
5828 | "bad ibase; must be [2, 16]", //BC_RESULT_IBASE | 5828 | "bad ibase; must be [2, 16]", //BC_RESULT_IBASE |
5829 | "bad scale; must be [0, BC_SCALE_MAX]", //BC_RESULT_SCALE | 5829 | "bad scale; must be [0, BC_SCALE_MAX]", //BC_RESULT_SCALE |
5830 | "?1", //BC_RESULT_LAST | 5830 | NULL, //can't happen //BC_RESULT_LAST |
5831 | "?2", //BC_RESULT_CONSTANT | 5831 | NULL, //can't happen //BC_RESULT_CONSTANT |
5832 | "?3", //BC_RESULT_ONE | 5832 | NULL, //can't happen //BC_RESULT_ONE |
5833 | "bad obase; must be [2, BC_BASE_MAX]", //BC_RESULT_OBASE | 5833 | "bad obase; must be [2, BC_BASE_MAX]", //BC_RESULT_OBASE |
5834 | }; | 5834 | }; |
5835 | size_t *ptr; | 5835 | size_t *ptr; |