From 368fbd44420e3a7f7cfcc5754b961be38e7e1324 Mon Sep 17 00:00:00 2001 From: Philipp Schafft Date: Wed, 12 Sep 2018 09:22:46 +0000 Subject: [PATCH] Update: Code style --- httpp/httpp.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/httpp/httpp.c b/httpp/httpp.c index 0798f7f..fd1edd6 100644 --- a/httpp/httpp.c +++ b/httpp/httpp.c @@ -380,11 +380,11 @@ int httpp_parse(http_parser_t *parser, const char *http_data, unsigned long len) whitespace = 0; where++; switch (where) { - case 1: - uri = &line[0][i]; + case 1: + uri = &line[0][i]; break; - case 2: - version = &line[0][i]; + case 2: + version = &line[0][i]; break; } }