summaryrefslogtreecommitdiff
path: root/ot_fullscrape.c
diff options
context:
space:
mode:
authorerdgeist <>2007-11-12 17:26:01 +0000
committererdgeist <>2007-11-12 17:26:01 +0000
commit3eb88c5cc63a7fd4702be523d9ccf3a60838811d (patch)
treefa52dfde4c90f3ac57af9fcd173927ebb2cc42cd /ot_fullscrape.c
parent71e9ec887c8043b4263e87a937c2c260cf1a9b5a (diff)
Fix typos in documenation
Diffstat (limited to 'ot_fullscrape.c')
-rw-r--r--ot_fullscrape.c6
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 */