Skip to content

Commit

Permalink
fix wrong logic operator usage
Browse files Browse the repository at this point in the history
  • Loading branch information
psychocrypt committed Mar 6, 2019
1 parent dc0d5e1 commit 746cf7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xmrstak/backend/cpu/crypto/cryptonight_aesni.h
Original file line number Diff line number Diff line change
Expand Up @@ -798,7 +798,7 @@ inline void cryptonight_conceal_tweak(__m128i& cx, __m128& conc_var)
ah0 += lo; \
al0 += hi; \
} \
if(ALGO == cryptonight_monero_v8 || ALGO == cryptonight_r || ALGO != cryptonight_r_wow) \
if(ALGO == cryptonight_monero_v8 || ALGO == cryptonight_r || ALGO == cryptonight_r_wow) \
{ \
bx1 = bx0; \
bx0 = cx; \
Expand Down

0 comments on commit 746cf7f

Please sign in to comment.