diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2014-06-08 09:26:46 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2014-06-08 09:26:46 +0000 |
commit | 3f1e6ac8cd1dc1ab32b9008038460d71825e262c (patch) | |
tree | 0bd9ef17f2a19806d28d28ac538a77bbb317a9cf /src | |
parent | bfdc88cb0b9f61f14595144746127f6c50a4cfce (diff) |
Typos
Diffstat (limited to 'src')
-rw-r--r-- | src/htscore.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/htscore.c b/src/htscore.c index 046c60f..80f7772 100644 --- a/src/htscore.c +++ b/src/htscore.c @@ -195,7 +195,7 @@ static char* hts_record_link_strdup_(httrackp *opt, const char *s) { liensbuf->string_buffer_size = 0; } - // Double capacity for each new chaines block + // Double capacity for each new chained block liensbuf->string_buffer_capa = liensbuf->string_buffer_capa < block_capa ? block_capa : liensbuf->string_buffer_capa * 2; @@ -258,7 +258,7 @@ static size_t hts_record_link_alloc(httrackp *opt) { liensbuf->lien_buffer_size = 0; } - // Double capacity for each new chaines block + // Double capacity for each new chained block liensbuf->lien_buffer_capa = liensbuf->lien_buffer_capa < block_capa ? block_capa : liensbuf->lien_buffer_capa * 2; |