mirror of
https://github.com/Microsoft/calculator.git
synced 2025-08-22 22:23:29 -07:00
Change postfix to prefix
This commit is contained in:
parent
233339d289
commit
64e26415ed
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue