summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDirk Engling <erdgeist@erdgeist.org>2015-06-02 19:50:55 +0200
committerDirk Engling <erdgeist@erdgeist.org>2015-06-02 19:50:55 +0200
commitb8bb694ab72177dd56ee1bed62933f62167a421c (patch)
tree7a200c887211134c5dde0a64950c7d4ab9738945
parentb35f561d484b7647a0aeecbb55773730ff608412 (diff)
Avoid warning for unused return value
-rw-r--r--src/postprocess/join.c2
1 files changed, 1 insertions, 1 deletions
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 ) {
72 off += rt_strlen( in + off ); 72 off += rt_strlen( in + off );
73 73
74 if( out_off + 8192 * 2 > HUGEBLOCK ) { 74 if( out_off + 8192 * 2 > HUGEBLOCK ) {
75 fwrite( out, out_off, 1, stdout ); 75 (void)fwrite( out, out_off, 1, stdout );
76 out_off = 0; 76 out_off = 0;
77 } 77 }
78 } 78 }