sad

simple audio daemon
git clone git://git.2f30.org/sad
Log | Files | Refs | LICENSE

commit f65599189398f234231e84617c41804bb790936a
parent df6e46eacf61ada83f53752b084240fe0c1faa84
Author: sin <sin@2f30.org>
Date:   Thu, 25 Dec 2014 17:31:54 +0000

Increase timeout to 10ms

Diffstat:
Msad.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sad.c b/sad.c @@ -104,7 +104,7 @@ main(void) while (1) { rfds = master; tv.tv_sec = 0; - tv.tv_usec = 1000; + tv.tv_usec = 10000; n = select(fdmax + 1, &rfds, NULL, NULL, &tv); if (n < 0) err(1, "select");