aboutsummaryrefslogtreecommitdiffstats
path: root/test/run_normalize.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2012-03-19 20:37:17 +0100
committerMax Kellermann <max@duempel.org>2012-03-19 23:26:47 +0100
commit79eb7623efb3105094dcb77f8688e39b8288155e (patch)
tree85657479c22e498f908b10cb01b8df18b6911370 /test/run_normalize.c
parentb9e64d04720cc114aa405a86332b7cb1321db8c6 (diff)
downloadmpd-79eb7623efb3105094dcb77f8688e39b8288155e.tar.gz
mpd-79eb7623efb3105094dcb77f8688e39b8288155e.tar.xz
mpd-79eb7623efb3105094dcb77f8688e39b8288155e.zip
event_pipe, test: explicitly ignore write() return value
Some compilers are very picky, but we really aren't interested in the return value.
Diffstat (limited to 'test/run_normalize.c')
-rw-r--r--test/run_normalize.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/run_normalize.c b/test/run_normalize.c
index dd1140782..958015973 100644
--- a/test/run_normalize.c
+++ b/test/run_normalize.c
@@ -65,7 +65,8 @@ int main(int argc, char **argv)
while ((nbytes = read(0, buffer, sizeof(buffer))) > 0) {
Compressor_Process_int16(compressor,
(int16_t *)buffer, nbytes / 2);
- write(1, buffer, nbytes);
+
+ G_GNUC_UNUSED ssize_t ignored = write(1, buffer, nbytes);
}
Compressor_delete(compressor);