diff options
Diffstat (limited to 'src/libunixonacid/buffer_timed_fill.c')
-rw-r--r-- | src/libunixonacid/buffer_timed_fill.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libunixonacid/buffer_timed_fill.c b/src/libunixonacid/buffer_timed_fill.c index eb41b5b..6ec3e30 100644 --- a/src/libunixonacid/buffer_timed_fill.c +++ b/src/libunixonacid/buffer_timed_fill.c @@ -10,7 +10,7 @@ static ssize_t get (buffer *b) return sanitize_read(buffer_fill(b)) ; } -ssize_t buffer_timed_fill (buffer *b, tain_t const *deadline, tain_t *stamp) +ssize_t buffer_timed_fill (buffer *b, tain const *deadline, tain *stamp) { - return timed_get(b, (initfunc_t_ref)&buffer_getfd, (getfunc_t_ref)&get, deadline, stamp) ; + return timed_get(b, (init_func_ref)&buffer_getfd, (get_func_ref)&get, deadline, stamp) ; } |