event_pipe, test: explicitly ignore write() return value

Some compilers are very picky, but we really aren't interested in the
return value.
This commit is contained in:
Max Kellermann
2012-03-19 20:37:17 +01:00
parent 351ac4a2c0
commit 36827e1134
8 changed files with 12 additions and 9 deletions

View File

@@ -115,7 +115,7 @@ int main(int argc, char **argv)
return 2;
}
write(1, output, length);
G_GNUC_UNUSED ssize_t ignored = write(1, output, length);
}
pcm_convert_deinit(&state);