diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-08-28 16:01:16 -0400 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-08-28 16:01:16 -0400 |
commit | 60f1acd0eff217d0e466115765575077782e5767 (patch) | |
tree | f6cc12df190baa88e133081273482886c49aa9cb /src/nvim/ex_cmds2.c | |
parent | 3dffc842fec3365d70192cc7c8162412d9187f9d (diff) | |
download | rneovim-60f1acd0eff217d0e466115765575077782e5767.tar.gz rneovim-60f1acd0eff217d0e466115765575077782e5767.tar.bz2 rneovim-60f1acd0eff217d0e466115765575077782e5767.zip |
ex_cmds2: checkall in dialog_changed() is bool
Diffstat (limited to 'src/nvim/ex_cmds2.c')
-rw-r--r-- | src/nvim/ex_cmds2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_cmds2.c b/src/nvim/ex_cmds2.c index c920264791..f7da5b6c97 100644 --- a/src/nvim/ex_cmds2.c +++ b/src/nvim/ex_cmds2.c @@ -1279,7 +1279,7 @@ bool check_changed(buf_T *buf, int flags) /// /// @param buf /// @param checkall may abandon all changed buffers -void dialog_changed(buf_T *buf, int checkall) +void dialog_changed(buf_T *buf, bool checkall) { char_u buff[DIALOG_MSG_SIZE]; int ret; |