From 96a34daab76f4ab24fea499d5fd929542c0997b0 Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Thu, 27 Sep 2018 03:17:36 -0400 Subject: lint --- src/nvim/ex_cmds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c index 892458dab7..6f94dedd76 100644 --- a/src/nvim/ex_cmds.c +++ b/src/nvim/ex_cmds.c @@ -585,7 +585,7 @@ void ex_sort(exarg_T *eap) // Insert the lines in the sorted order below the last one. lnum = eap->line2; - for (i = 0; i < count; ++i) { + for (i = 0; i < count; i++) { const linenr_T get_lnum = nrs[eap->forceit ? count - i - 1 : i].lnum; // If the original line number of the line being placed is not the same -- cgit