From: Igor Sysoev Date: Tue, 22 Jan 2008 15:09:55 +0000 (+0000) Subject: fix building by bcc introduced by r1831 X-Git-Tag: release-0.6.26~26 X-Git-Url: http://www.kaiwu.me/postgresql/commit/?a=commitdiff_plain;h=f0453c1c0cd38a70c4dc5c3e9eeaf7a4120573fc;p=nginx.git fix building by bcc introduced by r1831 --- diff --git a/src/core/ngx_inet.c b/src/core/ngx_inet.c index ca6c5f6e8..f54a05721 100644 --- a/src/core/ngx_inet.c +++ b/src/core/ngx_inet.c @@ -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;