summaryrefslogtreecommitdiffstats
path: root/src/edit.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-05-24 19:39:03 +0200
committerBram Moolenaar <Bram@vim.org>2019-05-24 19:39:03 +0200
commit18a4ba29aeccb9841d5bfdd2eaaffdfae2f15ced (patch)
tree408ad339f6b34876d2fa481ac61568c7739b1160 /src/edit.c
parent71de720c2c117137185a6fc233b35aab37f0d4bc (diff)
patch 8.1.1386: unessesary type casts for lalloc()v8.1.1386
Problem: Unessesary type casts for lalloc(). Solution: Remove type casts. Change lalloc(size, TRUE) to alloc(size).
Diffstat (limited to 'src/edit.c')
-rw-r--r--src/edit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/edit.c b/src/edit.c
index 6e2fdb8448..6e4b4743c4 100644
--- a/src/edit.c
+++ b/src/edit.c
@@ -3859,7 +3859,7 @@ replace_push(
if (replace_stack_len <= replace_stack_nr)
{
replace_stack_len += 50;
- p = lalloc(sizeof(char_u) * replace_stack_len, TRUE);
+ p = alloc(sizeof(char_u) * replace_stack_len);
if (p == NULL) /* out of memory */
{
replace_stack_len -= 50;