diff options
Diffstat (limited to 'src/pulsecore/core-error.c')
-rw-r--r-- | src/pulsecore/core-error.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/pulsecore/core-error.c b/src/pulsecore/core-error.c index 64464132..3d6c2c3b 100644 --- a/src/pulsecore/core-error.c +++ b/src/pulsecore/core-error.c @@ -1,5 +1,3 @@ -/* $Id$ */ - /*** This file is part of PulseAudio. @@ -51,7 +49,7 @@ const char* pa_cstrerror(int errnum) { if ((t = PA_STATIC_TLS_GET(cstrerror))) pa_xfree(t); - + #if defined(HAVE_STRERROR_R) && defined(__GLIBC__) original = strerror_r(errnum, errbuf, sizeof(errbuf)); #elif defined(HAVE_STRERROR_R) |