aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ex_cmds.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2015-02-18 20:54:15 -0500
committerJustin M. Keyes <justinkz@gmail.com>2015-02-18 20:54:15 -0500
commitb1d079c83b3dd459114d1ba7c2ff1b07a9ee3e9e (patch)
treee80358ae4795597680b45fe984dc5f2e9ce20237 /src/nvim/ex_cmds.c
parent366662d932551e558d10f09887ddf144ed5db34b (diff)
parent36340803afe1504f15468a715172c25cfef6974c (diff)
downloadrneovim-b1d079c83b3dd459114d1ba7c2ff1b07a9ee3e9e.tar.gz
rneovim-b1d079c83b3dd459114d1ba7c2ff1b07a9ee3e9e.tar.bz2
rneovim-b1d079c83b3dd459114d1ba7c2ff1b07a9ee3e9e.zip
Merge #1979 'Enable -Wconversion'
Diffstat (limited to 'src/nvim/ex_cmds.c')
-rw-r--r--src/nvim/ex_cmds.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c
index 49f33c5017..ad49153a1e 100644
--- a/src/nvim/ex_cmds.c
+++ b/src/nvim/ex_cmds.c
@@ -5257,8 +5257,7 @@ void fix_help_buffer(void)
else {
/* Do the conversion. If it fails
* use the unconverted text. */
- cp = string_convert(&vc, IObuff,
- NULL);
+ cp = string_convert(&vc, IObuff, NULL);
if (cp == NULL)
cp = IObuff;
}