From 6aae0e7c943267d2109ae20ec5086791c3b94a5e Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Fri, 13 Sep 2019 18:51:13 -0700 Subject: lint --- src/nvim/syntax.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/nvim/syntax.c') diff --git a/src/nvim/syntax.c b/src/nvim/syntax.c index 80214feb7d..13fcad71fa 100644 --- a/src/nvim/syntax.c +++ b/src/nvim/syntax.c @@ -5048,10 +5048,10 @@ static char_u *get_syn_pattern(char_u *arg, synpat_T *ci) } else { /* yy=x+99 */ end += 4; if (*end == '+') { - ++end; + end++; *p = getdigits_int(&end, true, 0); // positive offset } else if (*end == '-') { - ++end; + end++; *p = -getdigits_int(&end, true, 0); // negative offset } } -- cgit