From e6d2c12792d6dd976e30cd3a7c914eacd89f8534 Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Sun, 26 Jan 2025 16:46:23 +0100 Subject: [INTERPRETER] Fixed a few warning --- src/libtools/decopcode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/libtools/decopcode.c') diff --git a/src/libtools/decopcode.c b/src/libtools/decopcode.c index a6694fb5..05254f8b 100644 --- a/src/libtools/decopcode.c +++ b/src/libtools/decopcode.c @@ -148,7 +148,7 @@ int decode_opcode(uintptr_t rip, int is32bits) } } } - if((addr[idx]==0xC4 || addr[idx]==0xC5) && (!is32bits || (addr[idx+1]&0xc0!=0xc0))) { + if((addr[idx]==0xC4 || addr[idx]==0xC5) && (!is32bits || ((addr[idx+1]&0xc0)!=0xc0))) { uint8_t tmp8u; switch(addr[idx++]) { case 0xC4: -- cgit 1.4.1