comparison src/core/ngx_inet.c @ 1862:04b04e6d60f4

fix building by bcc introduced by r1831
author Igor Sysoev <igor@sysoev.ru>
date Tue, 22 Jan 2008 15:09:55 +0000
parents cac010479ea0
children 2a92804f4109
comparison
equal deleted inserted replaced
1861:f00b30557c81 1862:04b04e6d60f4
210 } 210 }
211 } 211 }
212 212
213 c2 = c % 10; 213 c2 = c % 10;
214 214
215 *text++ = (u_char) (c2 + '0'); 215 *text = (u_char) (c2 + '0');
216 n++; 216 n++;
217 217
218 return n; 218 return n;
219 } 219 }
220 220