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…
Add table
Add a link
Reference in a new issue