diff options
author | Ismail Badawi <ismail@badawi.io> | 2015-06-23 19:33:47 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-06-25 01:28:02 -0400 |
commit | 34a5efd7a9a5c093207ab9d235719de546ff7479 (patch) | |
tree | 7c63ca80a55c63cc15eb178571768362b425bbde /src/nvim/ex_docmd.c | |
parent | f78bf64771c47a685fb3a994d09d41ae970c77d0 (diff) | |
download | rneovim-34a5efd7a9a5c093207ab9d235719de546ff7479.tar.gz rneovim-34a5efd7a9a5c093207ab9d235719de546ff7479.tar.bz2 rneovim-34a5efd7a9a5c093207ab9d235719de546ff7479.zip |
Enable -Wconversion: menu.c #2885
Diffstat (limited to 'src/nvim/ex_docmd.c')
-rw-r--r-- | src/nvim/ex_docmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_docmd.c b/src/nvim/ex_docmd.c index 2ca2c59b24..35b62cdd47 100644 --- a/src/nvim/ex_docmd.c +++ b/src/nvim/ex_docmd.c @@ -7779,7 +7779,7 @@ static void ex_stopinsert(exarg_T *eap) * Execute normal mode command "cmd". * "remap" can be REMAP_NONE or REMAP_YES. */ -void exec_normal_cmd(char_u *cmd, int remap, int silent) +void exec_normal_cmd(char_u *cmd, int remap, bool silent) { oparg_T oa; |