mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-06 13:29:56 -05:00
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:
parent
584ca6193c
commit
6d8aea724e
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue