1
0
Fork 0

Update: Code style

This commit is contained in:
Philipp Schafft 2018-09-12 09:22:46 +00:00
parent a7b391b0f2
commit 368fbd4442
1 changed files with 4 additions and 4 deletions

View File

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