Skip to content

Commit

Permalink
style code
Browse files Browse the repository at this point in the history
  • Loading branch information
vislee committed May 12, 2018
1 parent 1e204f5 commit ab5a69b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions ngx_http_waf_module.c
Original file line number Diff line number Diff line change
Expand Up @@ -782,7 +782,8 @@ ngx_http_waf_create_loc_conf(ngx_conf_t *cf)


// -- public ---------------
static u_char *ngx_strpbrk(u_char *b, u_char *e, char *s) {
static u_char *
ngx_strpbrk(u_char *b, u_char *e, char *s) {
u_char *p = b;

while (p < e) {
Expand All @@ -797,7 +798,7 @@ static u_char *ngx_strpbrk(u_char *b, u_char *e, char *s) {
}


u_char *
static u_char *
ngx_memnstr(u_char *s1, char *s2, size_t len)
{
u_char c1, c2;
Expand Down

0 comments on commit ab5a69b

Please sign in to comment.