From 32526b3c1846025f0e655f41efd4e5428da16b6c Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 19 Jan 2019 17:43:09 +0100 Subject: patch 8.1.0779: argument for message functions is inconsistent Problem: Argument for message functions is inconsistent. Solution: Make first argument to msg() "char *". --- src/gui.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/gui.c') diff --git a/src/gui.c b/src/gui.c index 867778762..9278df973 100644 --- a/src/gui.c +++ b/src/gui.c @@ -2750,7 +2750,7 @@ gui_redraw_block( vim_snprintf((char *)IObuff, IOSIZE, "INTERNAL ERROR: NUL in ScreenLines in row %ld", (long)gui.row); - msg(IObuff); + msg((char *)IObuff); } } # ifdef FEAT_GUI_GTK @@ -5323,7 +5323,7 @@ gui_do_findrepl( } } else - MSG(_("No match at cursor, finding next")); + msg(_("No match at cursor, finding next")); vim_regfree(regmatch.regprog); } } -- cgit v1.2.1