diff options
Diffstat (limited to 'src/core/ngx_inet.c')
-rw-r--r-- | src/core/ngx_inet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ngx_inet.c b/src/core/ngx_inet.c index 1ae7829fa..e7bdc410d 100644 --- a/src/core/ngx_inet.c +++ b/src/core/ngx_inet.c @@ -419,7 +419,7 @@ ngx_inet_parse_host_port(ngx_inet_upstream_t *u) u->host.data = url->data; u->host_header = *url; - for (/* void */; i < url->len; i++) { + for ( /* void */ ; i < url->len; i++) { if (url->data[i] == ':') { u->port_text.data = &url->data[i] + 1; |