diff options
author | Ville Skyttä <ville.skytta@iki.fi> | 2017-06-25 13:20:41 +0300 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-06-27 10:35:49 -0700 |
commit | 64127575149e35b409bc2f78962f86507346d604 (patch) | |
tree | 3287f694ee01dfabdcab849c10fd90947a0ca531 /compat/regex | |
parent | Twelfth batch for 2.14 (diff) | |
download | tgif-64127575149e35b409bc2f78962f86507346d604.tar.xz |
Spelling fixes
Signed-off-by: Ville Skyttä <ville.skytta@iki.fi>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'compat/regex')
-rw-r--r-- | compat/regex/regexec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/regex/regexec.c b/compat/regex/regexec.c index eb5e1d4439..0a745d9c3b 100644 --- a/compat/regex/regexec.c +++ b/compat/regex/regexec.c @@ -4102,7 +4102,7 @@ extend_buffers (re_match_context_t *mctx) if (BE (INT_MAX / 2 / sizeof (re_dfastate_t *) <= pstr->bufs_len, 0)) return REG_ESPACE; - /* Double the lengthes of the buffers. */ + /* Double the lengths of the buffers. */ ret = re_string_realloc_buffers (pstr, pstr->bufs_len * 2); if (BE (ret != REG_NOERROR, 0)) return ret; |