X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=audioc.c;h=93e91178907dd71a2fcb9761b64da9852e42be35;hp=968f84b6fcd3c6960b2dbf4e2009297e8fd1028c;hb=d7cda933daa35663b2b9b61d62cb514afa37fd18;hpb=f2a7b00cf72104a38733b7bf3add9fb19dd71c93;ds=sidebyside diff --git a/audioc.c b/audioc.c index 968f84b6..93e91178 100644 --- a/audioc.c +++ b/audioc.c @@ -22,6 +22,7 @@ #include "para.h" #include "net.h" #include "string.h" +#include "fd.h" struct gengetopt_args_info conf; char *tmpfifo; @@ -130,7 +131,7 @@ int main(int argc, char *argv[]) ret = -E_OVERRUN; if (max_fileno < 0) goto out; - ret = select(max_fileno + 1, &rfd, &wfd, NULL, NULL); + ret = para_select(max_fileno + 1, &rfd, &wfd, NULL); if (ret < 0) { ret = -E_SELECT; goto out;