summaryrefslogtreecommitdiffstats
path: root/src/gui_w32.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/gui_w32.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/gui_w32.c')
-rw-r--r--src/gui_w32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui_w32.c b/src/gui_w32.c
index bf27386061..fd46b66856 100644
--- a/src/gui_w32.c
+++ b/src/gui_w32.c
@@ -6803,12 +6803,12 @@ gui_mch_dialog(
dfltbutton = -1;
/* Allocate array to hold the width of each button */
- buttonWidths = (int *)lalloc(numButtons * sizeof(int), TRUE);
+ buttonWidths = (int *)alloc(numButtons * sizeof(int));
if (buttonWidths == NULL)
return -1;
/* Allocate array to hold the X position of each button */
- buttonPositions = (int *)lalloc(numButtons * sizeof(int), TRUE);
+ buttonPositions = (int *)alloc(numButtons * sizeof(int));
if (buttonPositions == NULL)
return -1;