From 08706f5dfb0db821bbb9db022330fb3ee60ccd3b Mon Sep 17 00:00:00 2001 From: orignal Date: Sun, 25 Nov 2018 18:49:59 -0500 Subject: [PATCH] fixed typo --- libi2pd/Crypto.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libi2pd/Crypto.h b/libi2pd/Crypto.h index 6accdaa0..9c4ff505 100644 --- a/libi2pd/Crypto.h +++ b/libi2pd/Crypto.h @@ -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(buf)[i] ^= reinterpret_cast(buf)[i]; + reinterpret_cast(buf)[i] ^= reinterpret_cast(other.buf)[i]; #endif } }