From: Jean-Philippe Orsini Date: Mon, 30 Apr 2012 09:36:47 +0000 (+0000) Subject: unsigned int instead of int for 'boolean' struct members X-Git-Tag: v0.8.0.5~342 X-Git-Url: https://git.wpitchoune.net/gitweb/?p=psensor.git;a=commitdiff_plain;h=699c43db7f920418e7c836e774a1baa1ecd72e10 unsigned int instead of int for 'boolean' struct members --- diff --git a/src/lib/psensor.h b/src/lib/psensor.h index b04ca41..2673b6b 100644 --- a/src/lib/psensor.h +++ b/src/lib/psensor.h @@ -72,8 +72,8 @@ struct psensor { /* Color of the sensor used for the graph */ struct color *color; - /* Whether the sensor is displayed in the graph */ - int enabled; + /* Whether the graph sensor is displayed. */ + unsigned int enabled; /* see psensor_type */ unsigned int type; @@ -90,8 +90,8 @@ struct psensor { int alarm_high_thresold; int alarm_low_thresold; - /* Whether the current value is bigger than 'alarm_high_thresold'. */ - int alarm_raised; + /* Whether an alarm is raised for this sensor */ + unsigned int alarm_raised; void (*cb_alarm_raised) (struct psensor *, void *); void *cb_alarm_raised_data;