mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-10-31 22:25:35 -04:00
Fixed problem with Xwindows (socket descriptors)
This commit is contained in:
parent
85216d820e
commit
4e8ad5ff88
1 changed files with 1 additions and 1 deletions
|
|
@ -316,7 +316,7 @@ int snd_pcm_direct_server_create(snd_pcm_direct_t *dmix)
|
||||||
ret = fork();
|
ret = fork();
|
||||||
if (ret == 0)
|
if (ret == 0)
|
||||||
server_job(dmix);
|
server_job(dmix);
|
||||||
exit(EXIT_SUCCESS);
|
_exit(EXIT_SUCCESS);
|
||||||
} else {
|
} else {
|
||||||
waitpid(ret, NULL, 0);
|
waitpid(ret, NULL, 0);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue