summaryrefslogtreecommitdiff
path: root/miscutils/dc.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2020-12-29 16:53:11 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2020-12-29 16:53:11 +0100
commit77a51a2709de1b646ab493f0bf771d896de6efc2 (patch)
treed0e44b91d8391ca06d4de3f7d5101da76c4f940e /miscutils/dc.c
parentc7ef8187688b0e7f92d19b3fed2c4ecffe39a688 (diff)
downloadbusybox-w32-77a51a2709de1b646ab493f0bf771d896de6efc2.tar.gz
busybox-w32-77a51a2709de1b646ab493f0bf771d896de6efc2.tar.bz2
busybox-w32-77a51a2709de1b646ab493f0bf771d896de6efc2.zip
randomconfig fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'miscutils/dc.c')
-rw-r--r--miscutils/dc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/dc.c b/miscutils/dc.c
index 51376dd75..e94dc39e0 100644
--- a/miscutils/dc.c
+++ b/miscutils/dc.c
@@ -100,7 +100,7 @@ static void mod(void)
100 * 0 100 * 0
101 */ 101 */
102 if (d == 0) { 102 if (d == 0) {
103 bb_error_msg("remainder by zero"); 103 bb_simple_error_msg("remainder by zero");
104 pop(); 104 pop();
105 push(0); 105 push(0);
106 return; 106 return;