From 0d94a8735055432029237612a6eb9165db1ec9dd Mon Sep 17 00:00:00 2001 From: Vladimir Mezentsev Date: Thu, 29 Sep 2022 13:30:42 -0700 Subject: gprofng: fix cppcheck warnings gprofng/ChangeLog 2022-09-29 Vladimir Mezentsev * common/hwcdrv.c: Fix cppcheck warning. * src/ABS.h: Likewise. * src/CompCom.cc: Likewise. --- gprofng/src/ABS.h | 2 +- gprofng/src/CompCom.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'gprofng/src') diff --git a/gprofng/src/ABS.h b/gprofng/src/ABS.h index a5bcbea..c4552d8 100644 --- a/gprofng/src/ABS.h +++ b/gprofng/src/ABS.h @@ -53,7 +53,7 @@ extern char *ABS_PP_CODES[NUM_ABS_PP_CODES]; /* dbe should check HWC values for errors */ #define HWCVAL_ERR_FLAG (1ULL<<63) #define HWCVAL_SET_ERR(ctr) ((ctr) | HWCVAL_ERR_FLAG) -#define HWCVAL_HAS_ERR(ctr) ((ctr) & HWCVAL_ERR_FLAG ? 1 : 0) +#define HWCVAL_HAS_ERR(ctr) (((ctr) & HWCVAL_ERR_FLAG) != 0) #define HWCVAL_CLR_ERR(ctr) ((ctr) & ~HWCVAL_ERR_FLAG) #define ABS_GET_RT_CODE(EA) ((EA) & 0x0FLL) diff --git a/gprofng/src/CompCom.cc b/gprofng/src/CompCom.cc index 3a035a9..14d6fc3 100644 --- a/gprofng/src/CompCom.cc +++ b/gprofng/src/CompCom.cc @@ -305,7 +305,7 @@ CompComment::compcom_format (int index, compmsg *msg, int &visible) for (int i = 0; i < plist_idx - 1; i++) { prim_ty = ccm_param_primtype (msg->msg_type, i + 1); - if (prim_ty == CCM_PRIMTYPE_STRING || prim_ty == CCM_PRIMTYPE_STRING) + if (prim_ty == CCM_PRIMTYPE_STRING) free (parms[i]); } } -- cgit v1.1