From fe0ac602b943811f6e9d1a77c93014f1b160d788 Mon Sep 17 00:00:00 2001 From: ed Date: Sun, 3 Feb 2019 15:23:34 +0000 Subject: [PATCH] Fix code error --- asus-wmi-sensors.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/asus-wmi-sensors.c b/asus-wmi-sensors.c index 0ef7de9..2c84620 100644 --- a/asus-wmi-sensors.c +++ b/asus-wmi-sensors.c @@ -48,7 +48,7 @@ enum asus_wmi_sensor_class { FAN_RPM = 0x2, CURRENT = 0x3, WATER_FLOW = 0x4, - BOOL = 0x5 //TODO + //BOOL = 0x5 //TODO }; enum asus_wmi_location { @@ -65,7 +65,7 @@ enum asus_wmi_location { enum asus_wmi_type { SIGNED_INT = 0x0, UNSIGNED_INT = 0x1, - BOOL = 0x2, //TODO + //BOOL = 0x2, //TODO SCALED = 0x3, };