diff options
Diffstat (limited to 'src/core/ngx_string.c')
-rw-r--r-- | src/core/ngx_string.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ngx_string.c b/src/core/ngx_string.c index 8d69c1b72..0307bb1cd 100644 --- a/src/core/ngx_string.c +++ b/src/core/ngx_string.c @@ -15,7 +15,7 @@ ngx_cpystrn(u_char *dst, u_char *src, size_t n) return dst; } - for (/* void */; --n; dst++, src++) { + for ( /* void */ ; --n; dst++, src++) { *dst = *src; if (*dst == '\0') { |