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/file_search.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/file_search.c')
-rw-r--r-- | src/nvim/file_search.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/nvim/file_search.c b/src/nvim/file_search.c index 855de6595f..39a5ec062b 100644 --- a/src/nvim/file_search.c +++ b/src/nvim/file_search.c @@ -647,7 +647,7 @@ char_u *vim_findfile(void *search_ctx_arg) #ifdef FF_VERBOSE if (p_verbose >= 5) { verbose_enter_scroll(); - smsg((char_u *)"Already Searched: %s (%s)", + smsg("Already Searched: %s (%s)", stackp->ffs_fix_path, stackp->ffs_wc_path); /* don't overwrite this either */ msg_puts((char_u *)"\n"); @@ -660,8 +660,8 @@ char_u *vim_findfile(void *search_ctx_arg) #ifdef FF_VERBOSE else if (p_verbose >= 5) { verbose_enter_scroll(); - smsg((char_u *)"Searching: %s (%s)", - stackp->ffs_fix_path, stackp->ffs_wc_path); + smsg("Searching: %s (%s)", + stackp->ffs_fix_path, stackp->ffs_wc_path); /* don't overwrite this either */ msg_puts((char_u *)"\n"); verbose_leave_scroll(); @@ -821,7 +821,7 @@ char_u *vim_findfile(void *search_ctx_arg) ) == FAIL) { if (p_verbose >= 5) { verbose_enter_scroll(); - smsg((char_u *)"Already: %s", + smsg("Already: %s", file_path); /* don't overwrite this either */ msg_puts((char_u *)"\n"); @@ -848,7 +848,7 @@ char_u *vim_findfile(void *search_ctx_arg) #ifdef FF_VERBOSE if (p_verbose >= 5) { verbose_enter_scroll(); - smsg((char_u *)"HIT: %s", file_path); + smsg("HIT: %s", file_path); /* don't overwrite this either */ msg_puts((char_u *)"\n"); verbose_leave_scroll(); @@ -1011,7 +1011,7 @@ static ff_visited_list_hdr_T *ff_get_visited_list(char_u *filename, ff_visited_l #ifdef FF_VERBOSE if (p_verbose >= 5) { verbose_enter_scroll(); - smsg((char_u *)"ff_get_visited_list: FOUND list for %s", + smsg("ff_get_visited_list: FOUND list for %s", filename); /* don't overwrite this either */ msg_puts((char_u *)"\n"); @@ -1027,7 +1027,7 @@ static ff_visited_list_hdr_T *ff_get_visited_list(char_u *filename, ff_visited_l #ifdef FF_VERBOSE if (p_verbose >= 5) { verbose_enter_scroll(); - smsg((char_u *)"ff_get_visited_list: new list for %s", filename); + smsg("ff_get_visited_list: new list for %s", filename); /* don't overwrite this either */ msg_puts((char_u *)"\n"); verbose_leave_scroll(); |