diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-07-04 17:35:05 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-07-04 17:35:05 +0200 |
commit | e809a4ed3014fbf717c936c727291b5f038829a5 (patch) | |
tree | 5674e27df9d3158e318acb2d9656f98a1bc237dc /src/gui_beval.c | |
parent | 790c18bfa5dfeca51749b752dddc41e60cb3fa54 (diff) | |
download | vim-git-e809a4ed3014fbf717c936c727291b5f038829a5.tar.gz |
patch 8.1.1630: various small problemsv8.1.1630
Problem: Various small problems.
Solution: Various small improvements.
Diffstat (limited to 'src/gui_beval.c')
-rw-r--r-- | src/gui_beval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui_beval.c b/src/gui_beval.c index f4309b8c3..68d30e35f 100644 --- a/src/gui_beval.c +++ b/src/gui_beval.c @@ -107,7 +107,7 @@ gui_mch_create_beval_area( return NULL; } - beval = (BalloonEval *)alloc_clear(sizeof(BalloonEval)); + beval = ALLOC_CLEAR_ONE(BalloonEval); if (beval != NULL) { #ifdef FEAT_GUI_GTK |