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

style fix
author Igor Sysoev <igor@sysoev.ru>
date Wed, 23 Jun 2010 16:34:54 +0000
parents c11d96cbad75
children d620f497c50f
comparison
equal deleted inserted replaced
3641:6802ba529ec4 3642:ac33852faaac
111 111
112 } while (err == NGX_EINTR); 112 } while (err == NGX_EINTR);
113 113
114 rev->ready = 0; 114 rev->ready = 0;
115 115
116 if (n == NGX_ERROR){ 116 if (n == NGX_ERROR) {
117 rev->error = 1; 117 rev->error = 1;
118 } 118 }
119 119
120 return n; 120 return n;
121 } 121 }
167 167
168 } while (err == NGX_EINTR); 168 } while (err == NGX_EINTR);
169 169
170 rev->ready = 0; 170 rev->ready = 0;
171 171
172 if (n == NGX_ERROR){ 172 if (n == NGX_ERROR) {
173 rev->error = 1; 173 rev->error = 1;
174 } 174 }
175 175
176 return n; 176 return n;
177 } 177 }