commit | 97102b18747f6af9e017eefa814494eb61d4c8a9 | [log] [tgz] |
---|---|---|
author | Gavin Howard <yzena.tech@gmail.com> | Thu Nov 01 23:37:31 2018 -0600 |
committer | Gavin Howard <yzena.tech@gmail.com> | Thu Nov 01 23:37:31 2018 -0600 |
tree | a404fe0c67349976cae26609df7569d10d4d7ece | |
parent | 8f74e3d13a98f93ca79eb1d4ac897ae4cdcf85aa [diff] |
Style fix for busybox
diff --git a/src/num.c b/src/num.c index 2ff5873..cff6e59 100644 --- a/src/num.c +++ b/src/num.c
@@ -33,7 +33,8 @@ static void bc_num_setToZero(BcNum *n, size_t scale) { assert(n); - n->neg = (n->len = 0); + n->len = 0; + n->neg = false; n->rdx = scale; }