compiler warning cleanup: is_signed_type: compare -1 to 1
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Thu, 25 Mar 2021 18:20:58 +0000 (14:20 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Thu, 25 Mar 2021 18:38:04 +0000 (14:38 -0400)
commit1f611cf7fbc31c2b3c44a91c7c7ac8d647722fe3
tree75cd97e19931895a97e9fda654f76c1e07b4872f
parent5f7779c5265d15bd087fde0b2694249e11ea9472
compiler warning cleanup: is_signed_type: compare -1 to 1

Comparing -1 to 0 triggers compiler warnings (gcc -Wtype-limits and
-Wbool-compare) and Coverity warning "Macro compares unsigned to 0".

Comparing -1 to 1 instead takes care of silencing those warnings while
keeping the same behavior.

Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Change-Id: Id42a51759a1c7c669e63588c05f9d4485304c541
lib/bitfield.h
lttng-events.h
This page took 0.026012 seconds and 4 git commands to generate.