diff options
author | Chris Robinson <[email protected]> | 2009-10-02 07:34:49 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2009-10-02 07:34:49 -0700 |
commit | 5ff225fa1ba2827ef32884b5890bcfb35168527a (patch) | |
tree | 68002538f4ec22963cbc6788bcdf308850d00347 /Alc/pulseaudio.c | |
parent | 2a77e840cc54ecb6e8b5171b8c193b7dc88a3213 (diff) |
Add missing ) in pulseaudio backend
Diffstat (limited to 'Alc/pulseaudio.c')
-rw-r--r-- | Alc/pulseaudio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/pulseaudio.c b/Alc/pulseaudio.c index 2c0552b6..bfea9947 100644 --- a/Alc/pulseaudio.c +++ b/Alc/pulseaudio.c @@ -140,7 +140,7 @@ void pulse_load(void) //{{{ #define LOAD_FUNC(x) do { \ p##x = dlsym(pa_handle, #x); \ - if((err=dlerror() != NULL) { \ + if((err=dlerror()) != NULL) { \ AL_PRINT("Could not load %s from libpulse: %s\n", #x, err); \ dlclose(pa_handle); \ pa_handle = NULL; \ |