From: FreeBirdLjj Date: Wed, 24 Sep 2014 17:04:01 +0000 (+0800) Subject: Use the same coding style as other `i++`. X-Git-Url: https://git.danieliu.xyz/?p=smdp.git;a=commitdiff_plain;h=7eb09d7e88eec3c6531d2837376369af06acb8cb Use the same coding style as other `i++`. --- 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; }