diff options
Diffstat (limited to 'test/run_normalize.c')
-rw-r--r-- | test/run_normalize.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/run_normalize.c b/test/run_normalize.c index d16ed60ea..fc26829ed 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); |