Browse Source

fixed typo

pull/1274/head
orignal 6 years ago
parent
commit
08706f5dfb
  1. 2
      libi2pd/Crypto.h

2
libi2pd/Crypto.h

@ -142,7 +142,7 @@ namespace crypto @@ -142,7 +142,7 @@ namespace crypto
#else
// if not we always can cast to uint32_t *
for (int i = 0; i < 4; i++)
reinterpret_cast<uint32_t *>(buf)[i] ^= reinterpret_cast<uint32_t *>(buf)[i];
reinterpret_cast<uint32_t *>(buf)[i] ^= reinterpret_cast<const uint32_t *>(other.buf)[i];
#endif
}
}

Loading…
Cancel
Save