diff options
Diffstat (limited to 'lf_ring_buffer.c')
-rw-r--r-- | lf_ring_buffer.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lf_ring_buffer.c b/lf_ring_buffer.c index 7796206..225ef4d 100644 --- a/lf_ring_buffer.c +++ b/lf_ring_buffer.c @@ -1,5 +1,5 @@ /* - * File : lf_ring_buffer.h + * File : lf_ring_buffer.c * Author : Jérémy Zurcher <jeremy@asynk.ch> * Date : 05/01/010 * License : @@ -47,6 +47,7 @@ lf_ring_buffer_t* lf_ring_buffer_create( int n_buf ) { r->read_from = -1; r->write_to = 0; r->write_delay=BACKOFF_DELAY_INIT; + r->read_delay=BACKOFF_DELAY_INIT; return r; } |