mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-23 17:36:37 +02:00
fixed typo
This commit is contained in:
parent
a309eb9f3c
commit
96d109af81
1 changed files with 1 additions and 1 deletions
|
@ -124,7 +124,7 @@ namespace crypto
|
||||||
else
|
else
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
if (((size_t)buf | (size_t)other.buf) & 0x03) // multiple of 4 ?
|
if (!(((size_t)buf | (size_t)other.buf) & 0x03)) // multiple of 4 ?
|
||||||
{
|
{
|
||||||
// we are good to cast to uint32_t *
|
// we are good to cast to uint32_t *
|
||||||
for (int i = 0; i < 4; i++)
|
for (int i = 0; i < 4; i++)
|
||||||
|
|
Loading…
Add table
Reference in a new issue