From 18927b17379a9f8989c5c1155266a789e6935672 Mon Sep 17 00:00:00 2001 From: Michael Droettboom Date: Wed, 31 Aug 2022 10:56:26 -0400 Subject: [PATCH] Fix coding style --- Parser/tokenizer.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Parser/tokenizer.c b/Parser/tokenizer.c index 9edb17a43447d2..229b7847f78682 100644 --- a/Parser/tokenizer.c +++ b/Parser/tokenizer.c @@ -492,7 +492,8 @@ static void fp_ungetc(int c, struct tok_state *tok) { the sequence if yes, 0 if not. The special cases match those in stringlib/codecs.h:utf8_decode. */ -static int valid_utf8(const unsigned char* s) +static int +valid_utf8(const unsigned char* s) { int expected = 0; int length;