From 7eb09d7e88eec3c6531d2837376369af06acb8cb Mon Sep 17 00:00:00 2001 From: FreeBirdLjj Date: Thu, 25 Sep 2014 01:04:01 +0800 Subject: [PATCH] Use the same coding style as other `i++`. --- src/parser.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/parser.c b/src/parser.c index 0852e80..6f5c4c8 100644 --- a/src/parser.c +++ b/src/parser.c @@ -392,14 +392,14 @@ int length_utf8(char ch) { int next_nonblank(cstring_t *text, int i) { while ((i < text->size) && isspace((unsigned char) (text->text)[i])) - ++i; + i++; return i; } int next_blank(cstring_t *text, int i) { while ((i < text->size) && !isspace((unsigned char) (text->text)[i])) - ++i; + i++; return i; } -- 2.20.1