This is an automated email from the git hooks/post-receive script.

bluesabre pushed a 
commit to branch 
master
in repository panel-plugins/xfce4-pulseaudio-plugin.

commit 04f6373320b734cc8bc065337b14d6a2c14ffdac
Author: Sean Davis <[email protected]>
Date:   Sat Sep 16 06:33:03 2017 -0400

    Fix gcc-7 warning
---
 panel-plugin/pulseaudio-plugin.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/panel-plugin/pulseaudio-plugin.c b/panel-plugin/pulseaudio-plugin.c
index b23043a..ff1cd63 100644
--- a/panel-plugin/pulseaudio-plugin.c
+++ b/panel-plugin/pulseaudio-plugin.c
@@ -176,7 +176,7 @@ pulseaudio_plugin_init_debug (void)
 
   /* enable debug output if the PANEL_DEBUG is set to "all" */
   debug_env = g_getenv ("PANEL_DEBUG");
-  if ((debug_env != NULL) && (debug_env != '\0'))
+  if (debug_env != NULL)
     {
       debug_domains = g_strsplit (debug_env, ",", -1);
       for (i = 0; debug_domains[i] != NULL; i++)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
_______________________________________________
Xfce4-commits mailing list
[email protected]
https://mail.xfce.org/mailman/listinfo/xfce4-commits

Reply via email to