From b8bb694ab72177dd56ee1bed62933f62167a421c Mon Sep 17 00:00:00 2001 From: Dirk Engling Date: Tue, 2 Jun 2015 19:50:55 +0200 Subject: Avoid warning for unused return value --- src/postprocess/join.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/postprocess/join.c b/src/postprocess/join.c index 9782ec8..e2c75eb 100644 --- a/src/postprocess/join.c +++ b/src/postprocess/join.c @@ -72,7 +72,7 @@ int main( int argc, char **argv ) { off += rt_strlen( in + off ); if( out_off + 8192 * 2 > HUGEBLOCK ) { - fwrite( out, out_off, 1, stdout ); + (void)fwrite( out, out_off, 1, stdout ); out_off = 0; } } -- cgit v1.2.3