fix building by bcc introduced by r1831

This commit is contained in:
Igor Sysoev 2008-01-22 15:09:55 +00:00
parent 8b99e3f1ea
commit f0453c1c0c

View File

@ -212,7 +212,7 @@ ngx_sprint_uchar(u_char *text, u_char c, size_t len)
c2 = c % 10;
*text++ = (u_char) (c2 + '0');
*text = (u_char) (c2 + '0');
n++;
return n;