skalibs

Mirror/fork of https://skarnet.org/software/skalibs/
git clone https://ccx.te2000.cz/git/skalibs
Log | Files | Refs | README | LICENSE

commit 255d410c6492e42a584880785d63560dc96acdb4
parent c7ae9b166861542fbe690adadd87851fecf68dc8
Author: Laurent Bercot <ska-skaware@skarnet.org>
Date:   Mon, 15 Dec 2014 23:23:37 +0000

 Fix: timed_buffer_flush -> buffer_timed_flush

Diffstat:
Msrc/libunixonacid/buffer_timed_flush.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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) ; }