From a1509876de8541faaaf803383f6f52cfdf93918e Mon Sep 17 00:00:00 2001
From: Max Kellermann <max@duempel.org>
Date: Mon, 24 Feb 2014 20:31:29 +0100
Subject: output/pulse: use setenv() instead of g_setenv()

There is no advantage in using g_setenv().
---
 src/output/plugins/PulseOutputPlugin.cxx | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

(limited to 'src/output')

diff --git a/src/output/plugins/PulseOutputPlugin.cxx b/src/output/plugins/PulseOutputPlugin.cxx
index 51c8cd828..31635bcaf 100644
--- a/src/output/plugins/PulseOutputPlugin.cxx
+++ b/src/output/plugins/PulseOutputPlugin.cxx
@@ -26,8 +26,6 @@
 #include "util/Domain.hxx"
 #include "Log.hxx"
 
-#include <glib.h>
-
 #include <pulse/thread-mainloop.h>
 #include <pulse/context.h>
 #include <pulse/stream.h>
@@ -38,6 +36,7 @@
 
 #include <assert.h>
 #include <stddef.h>
+#include <stdlib.h>
 
 #define MPD_PULSE_NAME "Music Player Daemon"
 
@@ -327,7 +326,7 @@ pulse_output_init(const config_param &param, Error &error)
 {
 	PulseOutput *po;
 
-	g_setenv("PULSE_PROP_media.role", "music", true);
+	setenv("PULSE_PROP_media.role", "music", true);
 
 	po = new PulseOutput();
 	if (!po->base.Configure(param, error)) {
-- 
cgit v1.2.3