diff options
Diffstat (limited to 'ot_fullscrape.c')
-rw-r--r-- | ot_fullscrape.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ot_fullscrape.c b/ot_fullscrape.c index 052777a..8d4797a 100644 --- a/ot_fullscrape.c +++ b/ot_fullscrape.c | |||
@@ -27,13 +27,13 @@ size_t return_fullscrape_for_tracker( int *iovec_entries, struct iovec **iovecto | |||
27 | int bucket; | 27 | int bucket; |
28 | char *r, *re; | 28 | char *r, *re; |
29 | 29 | ||
30 | /* Setup return vector */ | 30 | /* Setup return vector... */ |
31 | *iovec_entries = 0; | 31 | *iovec_entries = 0; |
32 | if( !( r = iovec_increase( iovec_entries, iovector, OT_SCRAPE_CHUNK_SIZE ) ) ) | 32 | if( !( r = iovec_increase( iovec_entries, iovector, OT_SCRAPE_CHUNK_SIZE ) ) ) |
33 | return 0; | 33 | return 0; |
34 | 34 | ||
35 | /* ... and pointer end of current output buffer | 35 | /* ... and pointer to end of current output buffer. |
36 | this works as a low watermark */ | 36 | This works as a low watermark */ |
37 | re = r + OT_SCRAPE_CHUNK_SIZE; | 37 | re = r + OT_SCRAPE_CHUNK_SIZE; |
38 | 38 | ||
39 | /* Start reply dictionary */ | 39 | /* Start reply dictionary */ |