summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2007-09-28 09:23:05 +0000
committerPierre Ossman <ossman@cendio.se>2007-09-28 09:23:05 +0000
commit6d8aea724eb0011a068c9c883450418c80fda777 (patch)
treedde140f25f56795a2e8522ee870fcb4c8ab9e867
parent584ca6193c41c2fbe8e0d7acf7075a0eb33b1090 (diff)
Incorrectly used str2sig() instead of sig2str().
git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/lennart@1911 fefdeb5f-60dc-0310-8127-8f9354f1896f
-rw-r--r--src/pulsecore/core-util.c2
1 files changed, 1 insertions, 1 deletions
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);