diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2016-04-18 20:17:56 +0200 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2016-04-18 20:17:56 +0200 |
commit | ba97f735601792af9264550493d184bab62d0dca (patch) | |
tree | 39bbf4f4bc486b2cf16c5a664cba72a528f864d4 /src/nvim/ops.c | |
parent | 8d12e28d946b259811a8827aa6fbf1dca34c11da (diff) | |
parent | a3dfd1627e384d53bcd77b06498bcd440312cb31 (diff) | |
download | rneovim-ba97f735601792af9264550493d184bab62d0dca.tar.gz rneovim-ba97f735601792af9264550493d184bab62d0dca.tar.bz2 rneovim-ba97f735601792af9264550493d184bab62d0dca.zip |
Merge pull request #3951 from cacplate/misc1_Wconversion
Enable -Wconversion in misc1.c
Diffstat (limited to 'src/nvim/ops.c')
-rw-r--r-- | src/nvim/ops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ops.c b/src/nvim/ops.c index 5f48fdbf3d..601890d133 100644 --- a/src/nvim/ops.c +++ b/src/nvim/ops.c @@ -3989,7 +3989,7 @@ format_lines ( if (line_count < 0 && u_save_cursor() == FAIL) break; if (next_leader_len > 0) { - (void)del_bytes((long)next_leader_len, FALSE, FALSE); + (void)del_bytes(next_leader_len, false, false); mark_col_adjust(curwin->w_cursor.lnum, (colnr_T)0, 0L, (long)-next_leader_len); } else if (second_indent > 0) { /* the "leader" for FO_Q_SECOND */ |