summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2014-12-15 23:23:37 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2014-12-15 23:23:37 +0000
commit255d410c6492e42a584880785d63560dc96acdb4 (patch)
tree36172dde5d8917b3e29ee91a9733bad92d015cfc
parentc7ae9b166861542fbe690adadd87851fecf68dc8 (diff)
downloadskalibs-255d410c6492e42a584880785d63560dc96acdb4.tar.xz
Fix: timed_buffer_flush -> buffer_timed_flush
-rw-r--r--src/libunixonacid/buffer_timed_flush.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libunixonacid/buffer_timed_flush.c b/src/libunixonacid/buffer_timed_flush.c
index 63a2587..94d2c83 100644
--- a/src/libunixonacid/buffer_timed_flush.c
+++ b/src/libunixonacid/buffer_timed_flush.c
@@ -10,7 +10,7 @@ static int buffer_isnonempty (buffer *b)
return !buffer_isempty(b) ;
}
-int timed_buffer_flush (buffer *b, tain_t const *deadline, tain_t *stamp)
+int buffer_timed_flush (buffer *b, tain_t const *deadline, tain_t *stamp)
{
return timed_flush(b, (initfunc_t_ref)&buffer_getfd, (initfunc_t_ref)&buffer_isnonempty, (initfunc_t_ref)&buffer_flush, deadline, stamp) ;
}