blkdebug: fix enum comparison
commit95ee3914bfd551aeec49932a400530141865acad
authorBlue Swirl <blauwirbel@gmail.com>
Sat, 18 Sep 2010 05:53:15 +0000 (18 05:53 +0000)
committerBlue Swirl <blauwirbel@gmail.com>
Sat, 18 Sep 2010 05:53:15 +0000 (18 05:53 +0000)
tree62631426a34f98f8d630a4eca2429044fc2008d4
parent603ff77610d82d81d2071fd8d981241b5e288598
blkdebug: fix enum comparison

The signedness of enum types depend on the compiler implementation.
Therefore the check for negative values may or may not be meaningful.

Fix by explicitly casting to a signed integer.

Since the values are also checked earlier against event_names
table, this is an internal error. Change the 'if' to 'assert'.

This also avoids a warning with GCC flag -Wtype-limits.

Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
block/blkdebug.c