Change postfix to prefix

This commit is contained in:
Alfonso Gregory 2021-07-09 14:09:43 -04:00 committed by GitHub
commit 64e26415ed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -169,7 +169,7 @@ void boolnum(PNUMBER* pa, PNUMBER b, int func)
c->sign = a->sign; c->sign = a->sign;
while (c->cdigit > 1 && *(--pchc) == 0) while (c->cdigit > 1 && *(--pchc) == 0)
{ {
c->cdigit--; --c->cdigit;
} }
destroynum(*pa); destroynum(*pa);
*pa = c; *pa = c;