From f9d4c78ddcd99efeeb4e4e44b7bd0b6e34889db3 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Tue, 29 Apr 2014 16:16:51 +0200 Subject: replaced `vim_free()` calls with `free()` calls --- src/strings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/strings.c') diff --git a/src/strings.c b/src/strings.c index 87d5cc37c5..72a1f11460 100644 --- a/src/strings.c +++ b/src/strings.c @@ -284,7 +284,7 @@ char_u *strup_save(char_u *orig) memmove(s, res, p - res); STRCPY(s + (p - res) + newl, p + l); p = s + (p - res); - vim_free(res); + free(res); res = s; } -- cgit