mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 22:37:03 +00:00
Fixed few typos.
This commit is contained in:
parent
4e2c42799c
commit
05f42d995f
3 changed files with 4 additions and 4 deletions
|
|
@ -60,7 +60,8 @@ void BigNumber::SetQword(uint64 val)
|
|||
void BigNumber::SetBinary(const uint8 *bytes, int len)
|
||||
{
|
||||
uint8 t[1000];
|
||||
for (int i = 0; i < len; i++) t[i] = bytes[len - 1 - i];
|
||||
for (int i = 0; i < len; i++)
|
||||
t[i] = bytes[len - 1 - i];
|
||||
BN_bin2bn(t, len, _bn);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue