comparison src/os/unix/ngx_readv_chain.c @ 3642:ac33852faaac

style fix
author Igor Sysoev <igor@sysoev.ru>
date Wed, 23 Jun 2010 16:34:54 +0000
parents 387450de0b4d
children d620f497c50f
comparison
equal deleted inserted replaced
3641:6802ba529ec4 3642:ac33852faaac
156 156
157 } while (err == NGX_EINTR); 157 } while (err == NGX_EINTR);
158 158
159 rev->ready = 0; 159 rev->ready = 0;
160 160
161 if (n == NGX_ERROR){ 161 if (n == NGX_ERROR) {
162 c->read->error = 1; 162 c->read->error = 1;
163 } 163 }
164 164
165 return n; 165 return n;
166 } 166 }
245 245
246 } while (err == NGX_EINTR); 246 } while (err == NGX_EINTR);
247 247
248 rev->ready = 0; 248 rev->ready = 0;
249 249
250 if (n == NGX_ERROR){ 250 if (n == NGX_ERROR) {
251 c->read->error = 1; 251 c->read->error = 1;
252 } 252 }
253 253
254 return n; 254 return n;
255 } 255 }