From 3ef847aafc11da5f81f1822a9ea186fbdc59bad6 Mon Sep 17 00:00:00 2001 From: zaiic Date: Mon, 29 Aug 2022 22:35:06 +0800 Subject: [PATCH] fix: Corrected the code style at fast_obj.h:454. --- fast_obj.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fast_obj.h b/fast_obj.h index af76db0..226a11b 100644 --- a/fast_obj.h +++ b/fast_obj.h @@ -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; }