summaryrefslogtreecommitdiffstats
path: root/src/pulsecore/core-error.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pulsecore/core-error.c')
-rw-r--r--src/pulsecore/core-error.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/pulsecore/core-error.c b/src/pulsecore/core-error.c
index 3d6c2c3b..d9caa946 100644
--- a/src/pulsecore/core-error.c
+++ b/src/pulsecore/core-error.c
@@ -47,6 +47,9 @@ const char* pa_cstrerror(int errnum) {
char *translated, *t;
char errbuf[128];
+ if (errnum < 0)
+ errnum = -errnum;
+
if ((t = PA_STATIC_TLS_GET(cstrerror)))
pa_xfree(t);