diff options
author | Alex Murray <[email protected]> | 2010-06-29 00:04:13 +0930 |
---|---|---|
committer | infirit <[email protected]> | 2015-07-07 11:27:28 +0200 |
commit | 0535c32ba6f57327c9748ab10bf47b14e12ee746 (patch) | |
tree | 5dcd5adbb3357565fff84229397022f92d4dca82 | |
parent | 80cae83e9a6c853ce3a6a2f2c23eb2f549c70be7 (diff) | |
download | mate-sensors-applet-0535c32ba6f57327c9748ab10bf47b14e12ee746.tar.bz2 mate-sensors-applet-0535c32ba6f57327c9748ab10bf47b14e12ee746.tar.xz |
Cleanup debugging in libsensors plugin
-rw-r--r-- | plugins/libsensors/libsensors-plugin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/libsensors/libsensors-plugin.c b/plugins/libsensors/libsensors-plugin.c index 375b553..6050b7b 100644 --- a/plugins/libsensors/libsensors-plugin.c +++ b/plugins/libsensors/libsensors-plugin.c @@ -150,12 +150,12 @@ static const sensors_feature_data * get_sensor_min_max(const sensors_chip_name * *low_value = value; - g_debug("overriding low value of sensor %s with value %f\n", data->name, value); + g_debug("overriding low value of sensor %s with value %f", data->name, value); } else if (g_str_has_suffix(data->name, "_max")) { *high_value = value; - g_debug("overriding high value of sensor %s with value %f\n", data->name, value); + g_debug("overriding high value of sensor %s with value %f", data->name, value); } |