mirror of
https://github.com/Microsoft/calculator.git
synced 2025-08-22 14:13:30 -07:00
Replace DWORDLONG -> uint64_t
This commit is contained in:
parent
5fc9fcece6
commit
c725ba7c53
1 changed files with 1 additions and 1 deletions
|
@ -117,7 +117,7 @@ void _mulnumx( PNUMBER *pa, PNUMBER b )
|
|||
for ( ibdigit = b->cdigit; ibdigit > 0; ibdigit-- )
|
||||
{
|
||||
cy = 0;
|
||||
mcy = (DWORDLONG)da * (*ptrb);
|
||||
mcy = (uint64_t)da * (*ptrb);
|
||||
if ( mcy )
|
||||
{
|
||||
icdigit = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue