From: Tobias Oetiker Date: Sat, 21 Mar 2009 09:55:30 +0000 (+0000) Subject: rrd_flush is not necessary here this used to ba a call to fflush which is something... X-Git-Tag: 1.3.7~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=da4129a8f1f66654264d2ddf8d5059e679e1ac39;p=thirdparty%2Frrdtool-1.x.git rrd_flush is not necessary here this used to ba a call to fflush which is something different anyway. git-svn-id: svn://svn.oetiker.ch/rrdtool/branches/1.3/program@1761 a5681a0c-68f1-0310-ab6d-d61299d08faa --- diff --git a/src/rrd_hw.c b/src/rrd_hw.c index c536a35a..c9a5b1f7 100644 --- a/src/rrd_hw.c +++ b/src/rrd_hw.c @@ -168,7 +168,7 @@ int apply_smoother( free(rrd_values); return -1; } - rrd_flush(rrd_file); + /* could read all data in a single block, but we need to * check for NA values */ for (i = 0; i < row_count; ++i) {