summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Murray <[email protected]>2010-06-29 00:04:13 +0930
committerinfirit <[email protected]>2015-07-07 11:27:28 +0200
commit0535c32ba6f57327c9748ab10bf47b14e12ee746 (patch)
tree5dcd5adbb3357565fff84229397022f92d4dca82
parent80cae83e9a6c853ce3a6a2f2c23eb2f549c70be7 (diff)
downloadmate-sensors-applet-0535c32ba6f57327c9748ab10bf47b14e12ee746.tar.bz2
mate-sensors-applet-0535c32ba6f57327c9748ab10bf47b14e12ee746.tar.xz
Cleanup debugging in libsensors plugin
-rw-r--r--plugins/libsensors/libsensors-plugin.c4
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);
}