output/pulse: use setenv() instead of g_setenv()

There is no advantage in using g_setenv().
This commit is contained in:
Max Kellermann 2014-02-24 20:31:29 +01:00
parent 0f2cf51f43
commit a1509876de

View File

@ -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)) {