diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2025-01-26 16:46:23 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2025-01-26 16:46:23 +0100 |
| commit | e6d2c12792d6dd976e30cd3a7c914eacd89f8534 (patch) | |
| tree | da6eefc277a6f3c151bf26f5c0bce1d1792ad237 /src/libtools | |
| parent | c3dbdf419d04aba81ac8d3d7f8239c4d0efe61bf (diff) | |
| download | box64-e6d2c12792d6dd976e30cd3a7c914eacd89f8534.tar.gz box64-e6d2c12792d6dd976e30cd3a7c914eacd89f8534.zip | |
[INTERPRETER] Fixed a few warning
Diffstat (limited to 'src/libtools')
| -rw-r--r-- | src/libtools/decopcode.c | 2 |
1 files changed, 1 insertions, 1 deletions
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: |