diff options
author | Michael Reed <m.reed@mykolab.com> | 2015-05-13 15:31:40 -0400 |
---|---|---|
committer | Michael Reed <m.reed@mykolab.com> | 2015-05-13 15:31:40 -0400 |
commit | e888c479f3d34a1948c63495328b4184ff2ab874 (patch) | |
tree | f7dfab3c160479dd7170fbdb47684c6fd9188f4e /src/nvim/quickfix.c | |
parent | af4b0a76a757f44ea7fbfc8e1c863952adc6ac1e (diff) | |
parent | af3381b3196107653c04b56e7fae07e8a9a320ed (diff) | |
download | rneovim-e888c479f3d34a1948c63495328b4184ff2ab874.tar.gz rneovim-e888c479f3d34a1948c63495328b4184ff2ab874.tar.bz2 rneovim-e888c479f3d34a1948c63495328b4184ff2ab874.zip |
Merge pull request #2619 from Pyrohh/char_u-to-char
[RDY] Remove char_u (6)
Diffstat (limited to 'src/nvim/quickfix.c')
-rw-r--r-- | src/nvim/quickfix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/quickfix.c b/src/nvim/quickfix.c index 7e22da6e7a..4d53238381 100644 --- a/src/nvim/quickfix.c +++ b/src/nvim/quickfix.c @@ -1861,7 +1861,7 @@ void qf_age(exarg_T *eap) static void qf_msg(qf_info_T *qi) { - smsg((char_u *)_("error list %d of %d; %d errors"), + smsg(_("error list %d of %d; %d errors"), qi->qf_curlist + 1, qi->qf_listcount, qi->qf_lists[qi->qf_curlist].qf_count); qf_update_buffer(qi); @@ -2888,7 +2888,7 @@ void ex_vimgrep(exarg_T *eap) if (buf == NULL) { if (!got_int) - smsg((char_u *)_("Cannot open file \"%s\""), fname); + smsg(_("Cannot open file \"%s\""), fname); } else { /* Try for a match in all lines of the buffer. * For ":1vimgrep" look for first match only. */ |