X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fsel_thread.c;h=6e0706864ede1d6ca3cbde362247fb962fa65bb5;hb=35326727916ab3dcfbf57bc6ab05c31a97aebd74;hp=bb52c3cca303027e129728ed1a5784227a477142;hpb=ba5951a80fdd0da1d28c318852b69a1178cd6bfa;p=pazpar2-moved-to-github.git diff --git a/src/sel_thread.c b/src/sel_thread.c index bb52c3c..6e07068 100644 --- a/src/sel_thread.c +++ b/src/sel_thread.c @@ -101,7 +101,7 @@ static void *sel_thread_handler(void *vp) pthread_mutex_unlock(&p->mutex); /* wake up select/poll with a single byte */ - write(p->fd[1], "", 1); + (void) write(p->fd[1], "", 1); } pthread_mutex_unlock(&p->mutex); return 0; @@ -207,7 +207,7 @@ void *sel_thread_result(sel_thread_t p) p->free_queue = work_this; data = work_this->data; - read(p->fd[0], read_buf, 1); + (void) read(p->fd[0], read_buf, 1); } pthread_mutex_unlock(&p->mutex); return data;