projects
/
pazpar2-moved-to-github.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
829e3cd
)
Void out unused return values from write() and read() to avoid
author
Mike Taylor
<mike@miketaylor.org.uk>
Wed, 13 Jan 2010 12:31:43 +0000
(12:31 +0000)
committer
Mike Taylor
<mike@miketaylor.org.uk>
Wed, 13 Jan 2010 12:31:43 +0000
(12:31 +0000)
compiler warnings.
src/sel_thread.c
patch
|
blob
|
history
diff --git
a/src/sel_thread.c
b/src/sel_thread.c
index
358ab3a
..
f33fbb9
100644
(file)
--- 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;