From 0515d0caeb829ef6c91c4c9ba54504413163de4a Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Tue, 9 Jul 2024 12:24:01 -0400 Subject: Fix warning in mips arch (skip-note, skip-ci) --- arch/mips/mips/mips.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/mips/mips/mips.c b/arch/mips/mips/mips.c index a108c8f3..897a9a1e 100644 --- a/arch/mips/mips/mips.c +++ b/arch/mips/mips/mips.c @@ -2451,7 +2451,7 @@ uint32_t mips_decompose( return result; instruction->size = 4; //look for peudoinstructions by disassembling the next instruction too - if ((flags & DECOMPOSE_FLAGS_PSEUDO_OP != 0) && size >= 8) + if ((flags & DECOMPOSE_FLAGS_PSEUDO_OP) && size >= 8) { if (endianBig == 1) ins.value = bswap32(instructionValue[1]); -- cgit v1.3.1