aboutsummaryrefslogtreecommitdiffstats
path: root/main/busybox/busybox-bc.patch
diff options
context:
space:
mode:
Diffstat (limited to 'main/busybox/busybox-bc.patch')
-rw-r--r--main/busybox/busybox-bc.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/main/busybox/busybox-bc.patch b/main/busybox/busybox-bc.patch
deleted file mode 100644
index 465e798405b..00000000000
--- a/main/busybox/busybox-bc.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/miscutils/bc.c 2019-11-21 12:59:36.007348161 +0000
-+++ b/miscutils/bc.c 2019-11-21 17:05:22.192565550 +0000
-@@ -1465,7 +1465,7 @@
- b_int = BC_NUM_INT(b);
- a_int -= b_int;
-
-- if (a_int != 0) return (ssize_t) a_int;
-+ if (a_int != 0) return neg ? - (ssize_t) a_int : (ssize_t) a_int;
-
- a_max = (a->rdx > b->rdx);
- if (a_max) {