diff options
author | Michael Reed <m.reed@mykolab.com> | 2015-05-13 15:29:50 -0400 |
---|---|---|
committer | Michael Reed <m.reed@mykolab.com> | 2015-05-13 15:29:50 -0400 |
commit | 3c5864772f1c4d899fb5521868d373bcf0ebf788 (patch) | |
tree | a3b1ef76fce70cc91da8bb4270fc3b91c32609cf /src/nvim/if_cscope.c | |
parent | d666b0e48fd11d5a159e8e0055ce20d287b89644 (diff) | |
download | rneovim-3c5864772f1c4d899fb5521868d373bcf0ebf788.tar.gz rneovim-3c5864772f1c4d899fb5521868d373bcf0ebf788.tar.bz2 rneovim-3c5864772f1c4d899fb5521868d373bcf0ebf788.zip |
Remove char_u: message:smsg()
Diffstat (limited to 'src/nvim/if_cscope.c')
-rw-r--r-- | src/nvim/if_cscope.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/if_cscope.c b/src/nvim/if_cscope.c index b5751f0a6e..8629f1a6ba 100644 --- a/src/nvim/if_cscope.c +++ b/src/nvim/if_cscope.c @@ -1115,7 +1115,7 @@ static int cs_help(exarg_T *eap) /* Use %*s rather than %30s to ensure proper alignment in utf-8 */ if (space_cnt < 0) space_cnt = 0; - (void)smsg((char_u *)_("%-5s: %s%*s (Usage: %s)"), + (void)smsg(_("%-5s: %s%*s (Usage: %s)"), cmdp->name, help, space_cnt, " ", cmdp->usage); @@ -2083,10 +2083,10 @@ static int cs_show(exarg_T *eap) continue; if (csinfo[i].ppath != NULL) - (void)smsg((char_u *)"%2d %-5ld %-34s %-32s", + (void)smsg("%2d %-5ld %-34s %-32s", i, (long)csinfo[i].pid, csinfo[i].fname, csinfo[i].ppath); else - (void)smsg((char_u *)"%2d %-5ld %-34s <none>", + (void)smsg("%2d %-5ld %-34s <none>", i, (long)csinfo[i].pid, csinfo[i].fname); } } |