fix: Corrected the code style at fast_obj.h:454.

This commit is contained in:
zaiic 2022-08-29 22:35:06 +08:00
parent 85778da5fc
commit 3ef847aafc

View file

@ -451,8 +451,8 @@ const char* skip_whitespace(const char* ptr)
static
const char* skip_line(const char* ptr)
{
while (!is_newline(*ptr++))
;
while (!is_newline(*ptr))
ptr++;
return ptr;
}