summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2008-03-28 00:47:31 +0000
committerLennart Poettering <lennart@poettering.net>2008-03-28 00:47:31 +0000
commitb0dc80de547d9834e837768a8cb1ccd064effeb5 (patch)
treec00c9c7b3e29257cedf86306a9d3ec1dc8d7107d
parent4ddc3271e16d893c4743ce9470601a42fd3cd936 (diff)
work around yet another solaris braindamage
git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/prepare-0.9.10@2182 fefdeb5f-60dc-0310-8127-8f9354f1896f
-rw-r--r--src/utils/pactl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/pactl.c b/src/utils/pactl.c
index 4381d9d2..674eaee6 100644
--- a/src/utils/pactl.c
+++ b/src/utils/pactl.c
@@ -486,7 +486,7 @@ static void get_autoload_info_callback(pa_context *c, const pa_autoload_info *i,
i->name,
i->type == PA_AUTOLOAD_SINK ? "sink" : "source",
i->module,
- i->argument);
+ i->argument ? i->argument : "");
}
static void simple_callback(pa_context *c, int success, void *userdata) {