diff options
Diffstat (limited to 'src/misc1.c')
-rw-r--r-- | src/misc1.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |