comparison src/regexp.c @ 15543:dd725a8ab112 v8.1.0779

patch 8.1.0779: argument for message functions is inconsistent commit https://github.com/vim/vim/commit/32526b3c1846025f0e655f41efd4e5428da16b6c Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jan 19 17:43:09 2019 +0100 patch 8.1.0779: argument for message functions is inconsistent Problem: Argument for message functions is inconsistent. Solution: Make first argument to msg() "char *".
author Bram Moolenaar <Bram@vim.org>
date Sat, 19 Jan 2019 17:45:07 +0100
parents bd12ace1bab2
children d89c5b339c2a
comparison
equal deleted inserted replaced
15542:5baedae7ca7a 15543:dd725a8ab112
8197 report_re_switch(char_u *pat) 8197 report_re_switch(char_u *pat)
8198 { 8198 {
8199 if (p_verbose > 0) 8199 if (p_verbose > 0)
8200 { 8200 {
8201 verbose_enter(); 8201 verbose_enter();
8202 MSG_PUTS(_("Switching to backtracking RE engine for pattern: ")); 8202 msg_puts(_("Switching to backtracking RE engine for pattern: "));
8203 MSG_PUTS(pat); 8203 msg_puts((char *)pat);
8204 verbose_leave(); 8204 verbose_leave();
8205 } 8205 }
8206 } 8206 }
8207 #endif 8207 #endif
8208 8208