diff options
| author | ZyX <kp-pav@yandex.ru> | 2017-02-15 03:15:47 +0300 |
|---|---|---|
| committer | ZyX <kp-pav@yandex.ru> | 2017-02-15 03:15:47 +0300 |
| commit | 095e6cc2e098db110981e5f9ea4bbc0ce316cecb (patch) | |
| tree | b56f1f74b3c4f227218548e0aec606eeff80a920 /src/nvim/undo.c | |
| parent | efa2682e3b513c4a33d987dc651db5913feff21a (diff) | |
| download | rneovim-095e6cc2e098db110981e5f9ea4bbc0ce316cecb.tar.gz rneovim-095e6cc2e098db110981e5f9ea4bbc0ce316cecb.tar.bz2 rneovim-095e6cc2e098db110981e5f9ea4bbc0ce316cecb.zip | |
*: Fix linter errors
Diffstat (limited to 'src/nvim/undo.c')
| -rw-r--r-- | src/nvim/undo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/undo.c b/src/nvim/undo.c index 8470a8303e..8cedfcb905 100644 --- a/src/nvim/undo.c +++ b/src/nvim/undo.c @@ -2514,7 +2514,7 @@ void ex_undolist(exarg_T *eap) msg_start(); msg_puts_attr(_("number changes when saved"), hl_attr(HLF_T)); - for (int i = 0; i < ga.ga_len && !got_int; ++i) { + for (int i = 0; i < ga.ga_len && !got_int; i++) { msg_putchar('\n'); if (got_int) { break; |
