Browse Source

fixed typo

pull/1260/head
orignal 6 years ago
parent
commit
96d109af81
  1. 2
      libi2pd/Crypto.h

2
libi2pd/Crypto.h

@ -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…
Cancel
Save