[Goodies-commits] r3759 - xfce4-sensors-plugin/trunk/panel-plugin
Fabian Nowak
timystery at xfce.org
Fri Dec 28 23:14:31 CET 2007
Author: timystery
Date: 2007-12-28 22:14:31 +0000 (Fri, 28 Dec 2007)
New Revision: 3759
Modified:
xfce4-sensors-plugin/trunk/panel-plugin/hddtemp.c
Log:
add forgotten parenthesis
Modified: xfce4-sensors-plugin/trunk/panel-plugin/hddtemp.c
===================================================================
--- xfce4-sensors-plugin/trunk/panel-plugin/hddtemp.c 2007-12-28 22:13:03 UTC (rev 3758)
+++ xfce4-sensors-plugin/trunk/panel-plugin/hddtemp.c 2007-12-28 22:14:31 UTC (rev 3759)
@@ -293,7 +293,7 @@
&standard_output, &standard_error, &exit_status, &error);
/* filter those with no sensors out */
- if ((exit_status==256 && access (PATH_HDDTEMP, X_OK)==0) /* || strlen(standard_error)>0) */
+ if (exit_status==256 && access (PATH_HDDTEMP, X_OK)==0) /* || strlen(standard_error)>0) */
{
/* note that this check does only work for some versions of hddtmep. */
msg_text = g_strdup_printf(_("\"hddtemp\" was not executed correctly, "
More information about the Goodies-commits
mailing list