comparison src/http/v2/ngx_http_v2.h @ 6958:28dc369899ea

HTTP/2: style and typos. Signed-off-by: Piotr Sikora <piotrsikora@google.com>
author Piotr Sikora <piotrsikora@google.com>
date Sun, 26 Mar 2017 01:25:01 -0700
parents 3834951e32ab
children 2c4dbcd6f2e4
comparison
equal deleted inserted replaced
6957:83bae3d354ab 6958:28dc369899ea
247 ngx_http_v2_queue_blocked_frame(ngx_http_v2_connection_t *h2c, 247 ngx_http_v2_queue_blocked_frame(ngx_http_v2_connection_t *h2c,
248 ngx_http_v2_out_frame_t *frame) 248 ngx_http_v2_out_frame_t *frame)
249 { 249 {
250 ngx_http_v2_out_frame_t **out; 250 ngx_http_v2_out_frame_t **out;
251 251
252 for (out = &h2c->last_out; *out; out = &(*out)->next) 252 for (out = &h2c->last_out; *out; out = &(*out)->next) {
253 { 253
254 if ((*out)->blocked || (*out)->stream == NULL) { 254 if ((*out)->blocked || (*out)->stream == NULL) {
255 break; 255 break;
256 } 256 }
257 } 257 }
258 258