bc: BC_STATUS_VEC_ITEM_EXISTS is not a real error code, its message was never used
authorDenys Vlasenko <vda.linux@googlemail.com>
Mon, 3 Dec 2018 19:35:16 +0000 (20:35 +0100)
committerDenys Vlasenko <vda.linux@googlemail.com>
Wed, 5 Dec 2018 14:43:35 +0000 (15:43 +0100)
commita02f84472a9508e499f0eecd748929a44f5d3869
tree95d2a1ab874ad81396784ad57605ca19cf8401bf
parentbc5ce66617b6aa32b0ff7b51435cfc2c00c8ea89
bc: BC_STATUS_VEC_ITEM_EXISTS is not a real error code, its message was never used

It was only used to indicate rusult of bc_map_insert() - did we insert, or
did we find that this key is already in the map?

function                                             old     new   delta
bc_map_insert                                        142     145      +3
bc_program_addFunc                                   226     225      -1
bc_err_msgs                                          184     180      -4
bc_program_search                                    152     143      -9
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 1/3 up/down: 3/-14)             Total: -11 bytes
   text    data     bss     dec     hex filename
 987904     485    7296  995685   f3165 busybox_old
 987873     485    7296  995654   f3146 busybox_unstripped

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
miscutils/bc.c