summaryrefslogtreecommitdiffstats
path: root/src/evalwindow.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-01-08 16:19:22 +0000
committerBram Moolenaar <Bram@vim.org>2022-01-08 16:19:22 +0000
commit04935fb17e5f0f66b82cf4546b9752d3d1fa650e (patch)
treed80c59d316f2f17a27a6541a8eb40d01cc49eca8 /src/evalwindow.c
parent143367256836b0f69881dc0c65ff165ae091dbc5 (diff)
patch 8.2.4043: using int for second argument of ga_init2()v8.2.4043
Problem: Using int for second argument of ga_init2(). Solution: Remove unnessary type cast (int) when using sizeof().
Diffstat (limited to 'src/evalwindow.c')
-rw-r--r--src/evalwindow.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/evalwindow.c b/src/evalwindow.c
index 2a97adcf26..d632debe6d 100644
--- a/src/evalwindow.c
+++ b/src/evalwindow.c
@@ -1120,7 +1120,7 @@ f_winrestcmd(typval_T *argvars UNUSED, typval_T *rettv)
garray_T ga;
char_u buf[50];
- ga_init2(&ga, (int)sizeof(char), 70);
+ ga_init2(&ga, sizeof(char), 70);
// Do this twice to handle some window layouts properly.
for (i = 0; i < 2; ++i)