Incorrectly used str2sig() instead of sig2str().

git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/lennart@1911 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
Pierre Ossman 2007-09-28 09:23:05 +00:00
parent 584ca6193c
commit 6d8aea724e

View file

@ -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);