From 5146db3fd6e42c7a93bb802d2e1f269f3bd5053d Mon Sep 17 00:00:00 2001 From: Rot127 Date: Tue, 30 Apr 2024 06:28:43 -0500 Subject: [PATCH] Fix build warning --- suite/cstest/src/ppc_detail.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/suite/cstest/src/ppc_detail.c b/suite/cstest/src/ppc_detail.c index e215cef6b4..53660e50f4 100644 --- a/suite/cstest/src/ppc_detail.c +++ b/suite/cstest/src/ppc_detail.c @@ -78,7 +78,7 @@ char *get_detail_ppc(csh *handle, cs_mode mode, cs_insn *ins) } if (ppc->bc.pred_ctr != PPC_PRED_INVALID) printf("\t\tpred CTR: %s\n", get_pred_name(ppc->bc.pred_ctr)); - if (ppc->bc.hint != PPC_BH_INVALID) + if (ppc->bc.hint != PPC_BR_NOT_GIVEN) printf("\t\thint: %u\n", ppc->bc.hint); }