diff options
author | Max Kellermann <max@duempel.org> | 2012-03-19 20:37:17 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2012-03-19 20:37:25 +0100 |
commit | 36827e11346cc3076e608ae5137afb0f7fb7c65a (patch) | |
tree | 1fd87cfc0d7d0a80f9a545715d3c657859dece1f /test/dump_playlist.c | |
parent | 351ac4a2c0a6dfa0774e98d9b5a3d9db33e01274 (diff) | |
download | mpd-36827e11346cc3076e608ae5137afb0f7fb7c65a.tar.gz mpd-36827e11346cc3076e608ae5137afb0f7fb7c65a.tar.xz mpd-36827e11346cc3076e608ae5137afb0f7fb7c65a.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/dump_playlist.c')
-rw-r--r-- | test/dump_playlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dump_playlist.c b/test/dump_playlist.c index b38180033..0570f6e49 100644 --- a/test/dump_playlist.c +++ b/test/dump_playlist.c @@ -95,7 +95,7 @@ decoder_data(G_GNUC_UNUSED struct decoder *decoder, const void *data, size_t datalen, G_GNUC_UNUSED uint16_t kbit_rate) { - write(1, data, datalen); + G_GNUC_UNUSED ssize_t nbytes = write(1, data, datalen); return DECODE_COMMAND_NONE; } |