aboutsummaryrefslogtreecommitdiff
path: root/miscutils
diff options
context:
space:
mode:
Diffstat (limited to 'miscutils')
-rw-r--r--miscutils/bc.c6
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;