mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-27 11:52:03 +00:00
fix mptouv
This commit is contained in:
parent
b99162de12
commit
2b2bd9c4d3
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ mptouv(mpint *b)
|
|||
|
||||
v = 0ULL;
|
||||
for(s = 0; s < b->top; s++)
|
||||
v |= b->p[s]<<(s*sizeof(mpdigit)*8);
|
||||
v |= (uvlong)b->p[s]<<(s*sizeof(mpdigit)*8);
|
||||
|
||||
return v;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue