summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2006-07-14 00:05:13 +0000
committerLennart Poettering <lennart@poettering.net>2006-07-14 00:05:13 +0000
commit6d47ee8c679c466ffd72bac2870f2627415e0fe1 (patch)
tree6ba0d31608beb42b9195325c3aab59073505ba32 /src
parent241c0173a0292d4ea10c5d4fa19f2d7d456b7b45 (diff)
don't call pa_path_get_filename() on the result of pa_get_binary_name() since this is now done internally anyway
git-svn-id: file:///home/lennart/svn/public/libao-pulse/trunk@36 a8d83910-18e2-0310-866c-8ed7f9518005
Diffstat (limited to 'src')
-rw-r--r--src/ao_pulse.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/ao_pulse.c b/src/ao_pulse.c
index c2a1f54..bc85208 100644
--- a/src/ao_pulse.c
+++ b/src/ao_pulse.c
@@ -72,7 +72,7 @@ static void disable_sigpipe(void) {
int ao_plugin_test(void) {
char p[PATH_MAX], t[256], t2[256];
- const char *fn = NULL;
+ const char *fn;
struct pa_simple *s;
static const struct pa_sample_spec ss = {
.format = PA_SAMPLE_S16LE,
@@ -85,8 +85,7 @@ int ao_plugin_test(void) {
if (getenv("PULSE_SERVER") || getenv("PULSE_SINK"))
return 1;
- if (pa_get_binary_name(p, sizeof(p))) {
- fn = pa_path_get_filename(p);
+ if ((fn = pa_get_binary_name(p, sizeof(p)))) {
snprintf(t, sizeof(t), "libao[%s]", fn);
snprintf(t2, sizeof(t2), "libao[%s] test", fn);
}