aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/undo.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-04-29 19:18:40 +0200
committerJustin M. Keyes <justinkz@gmail.com>2019-04-29 21:22:55 +0200
commit8cf7daaaa8b16522cddf0d22ab35d28833b8dbbf (patch)
treee4a4bdaff3c5934162b450fb079461b05a368ab3 /src/nvim/undo.c
parent3033b5a70a1a9f1fdce1a772541fec9722825298 (diff)
downloadrneovim-8cf7daaaa8b16522cddf0d22ab35d28833b8dbbf.tar.gz
rneovim-8cf7daaaa8b16522cddf0d22ab35d28833b8dbbf.tar.bz2
rneovim-8cf7daaaa8b16522cddf0d22ab35d28833b8dbbf.zip
verb_msg: remove char_u
Diffstat (limited to 'src/nvim/undo.c')
-rw-r--r--src/nvim/undo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/undo.c b/src/nvim/undo.c
index 0a32d9b872..c531a488bc 100644
--- a/src/nvim/undo.c
+++ b/src/nvim/undo.c
@@ -1132,7 +1132,7 @@ void u_write_undo(const char *const name, const bool forceit, buf_T *const buf,
* existing undo file. */
if (buf->b_u_numhead == 0 && buf->b_u_line_ptr == NULL) {
if (p_verbose > 0)
- verb_msg((char_u *)_("Skipping undo file write, nothing to undo"));
+ verb_msg(_("Skipping undo file write, nothing to undo"));
goto theend;
}