From f8432ef127c0d84bc89ef604dfd6b619acd89c3b Mon Sep 17 00:00:00 2001 From: Felipe Oliveira Carvalho Date: Wed, 26 Mar 2014 17:31:13 -0300 Subject: Use realloc instead of vim_realloc --- src/misc1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/misc1.c') diff --git a/src/misc1.c b/src/misc1.c index 2ca4c80a40..7438d57b0a 100644 --- a/src/misc1.c +++ b/src/misc1.c @@ -2417,7 +2417,7 @@ int get_keystroke(void) /* Need some more space. This might happen when receiving a long * escape sequence. */ buflen += 100; - buf = vim_realloc(buf, buflen); + buf = realloc(buf, buflen); maxlen = (buflen - 6 - len) / 3; } if (buf == NULL) { -- cgit