2022-01-14 00:10:22

by David Yang

[permalink] [raw]
Subject: [PATCH] tools lib traceevent: fix boolreturn.cocci warning

From: Yang Guang <[email protected]>

The coccinelle report
./tools/lib/traceevent/event-parse-api.c:289:8-9:
WARNING: return of 0/1 in function 'tep_is_local_bigendian'
with return type bool.

Return statements in functions returning bool should use true/false
instead of 1/0.

Reported-by: Zeal Robot <[email protected]>
Signed-off-by: Yang Guang <[email protected]>
Signed-off-by: David Yang <[email protected]>
---
tools/lib/traceevent/event-parse-api.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/lib/traceevent/event-parse-api.c b/tools/lib/traceevent/event-parse-api.c
index f8361e45d446..f153476f39c1 100644
--- a/tools/lib/traceevent/event-parse-api.c
+++ b/tools/lib/traceevent/event-parse-api.c
@@ -286,7 +286,7 @@ bool tep_is_local_bigendian(struct tep_handle *tep)
{
if (tep)
return (tep->host_bigendian == TEP_BIG_ENDIAN);
- return 0;
+ return false;
}

/**
--
2.30.2