From 6d8aea724eb0011a068c9c883450418c80fda777 Mon Sep 17 00:00:00 2001 From: Pierre Ossman Date: Fri, 28 Sep 2007 09:23:05 +0000 Subject: Incorrectly used str2sig() instead of sig2str(). git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/lennart@1911 fefdeb5f-60dc-0310-8127-8f9354f1896f --- src/pulsecore/core-util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pulsecore/core-util.c b/src/pulsecore/core-util.c index 6db0870b..3defe2bc 100644 --- a/src/pulsecore/core-util.c +++ b/src/pulsecore/core-util.c @@ -639,7 +639,7 @@ const char *pa_sig2str(int sig) { { char buf[SIG2STR_MAX]; - if (str2sig(sig, buf) == 0) { + if (sig2str(sig, buf) == 0) { pa_xfree(PA_STATIC_TLS_GET(signame)); t = pa_sprintf_malloc("SIG%s", buf); PA_STATIC_TLS_SET(signame, t); -- cgit