diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2023-03-23 02:45:50 +0000 |
---|---|---|
committer | Laurent Bercot <ska@appnovation.com> | 2023-03-23 02:45:50 +0000 |
commit | a03ec4492a874bcff25cb81a68b754e512def793 (patch) | |
tree | a71c9b1c9a359381b9a2104e707eab821a7c429a /src | |
parent | 66ef9fc0b0eac03226c5a5b72c4be9056598595d (diff) | |
download | skalibs-a03ec4492a874bcff25cb81a68b754e512def793.tar.xz |
bugfix: typo in unix-timed.h
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/include/skalibs/unix-timed.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/skalibs/unix-timed.h b/src/include/skalibs/unix-timed.h index ca3d9c7..be79056 100644 --- a/src/include/skalibs/unix-timed.h +++ b/src/include/skalibs/unix-timed.h @@ -16,7 +16,7 @@ /* Timed "blocking" operations (the fd must still be non-blocking) */ extern int timed_flush (void *, init_func_ref, init_func_ref, init_func_ref, tain const *, tain *) ; -#define timed_flush_g(b, getfd, isnonempty, flush, deadline) timed_flush(b, getfd, isnonempty, flush, (deadline_), &STAMP) +#define timed_flush_g(b, getfd, isnonempty, flush, deadline) timed_flush(b, getfd, isnonempty, flush, (deadline), &STAMP) extern ssize_t timed_get (void *, init_func_ref, get_func_ref, tain const *, tain *) ; #define timed_get_g (b, getfd, get, deadline) timed_get(b, getfd, get, (deadline), &STAMP) |