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; }