summaryrefslogtreecommitdiff
path: root/src/screen.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-05-24 18:54:09 +0200
committerBram Moolenaar <Bram@vim.org>2019-05-24 18:54:09 +0200
commit964b3746b9c81e65887e2ac9a335f181db2bb592 (patch)
tree9afaaac41a1c4f71b359fd6706b88df00e22e7a1 /src/screen.c
parentd33a764123a8aedb20cd84aeff3b94810ee67c4c (diff)
downloadvim-git-964b3746b9c81e65887e2ac9a335f181db2bb592.tar.gz
patch 8.1.1384: using "int" for alloc() often results in compiler warningsv8.1.1384
Problem: Using "int" for alloc() often results in compiler warnings. Solution: Use "size_t" and remove type casts. Remove alloc_check(), Vim only works with 32 bit ints anyway.
Diffstat (limited to 'src/screen.c')
-rw-r--r--src/screen.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/screen.c b/src/screen.c
index e6c0b2b3d..cb10f6ee9 100644
--- a/src/screen.c
+++ b/src/screen.c
@@ -4948,7 +4948,7 @@ win_line(
if (n_extra > 0)
len += n_extra - tab_len;
c = lcs_tab1;
- p = alloc((unsigned)(len + 1));
+ p = alloc(len + 1);
vim_memset(p, ' ', len);
p[len] = NUL;
vim_free(p_extra_free);
@@ -5107,7 +5107,7 @@ win_line(
char_u *p;
c = *p_extra;
- p = alloc((unsigned)n_extra + 1);
+ p = alloc(n_extra + 1);
vim_memset(p, ' ', n_extra);
STRNCPY(p, p_extra + 1, STRLEN(p_extra) - 1);
p[n_extra] = NUL;
@@ -6680,9 +6680,9 @@ win_redr_status_matches(
return;
if (has_mbyte)
- buf = alloc((unsigned)Columns * MB_MAXBYTES + 1);
+ buf = alloc(Columns * MB_MAXBYTES + 1);
else
- buf = alloc((unsigned)Columns + 1);
+ buf = alloc(Columns + 1);
if (buf == NULL)
return;