commit | bb4edb5cef39365f64f74a57b9a44c4a7b9b3b93 | [log] [tgz] |
---|---|---|
author | Tatsuhiko Kubo <cubicdaiya@gmail.com> | Wed Jul 09 23:20:40 2014 +0900 |
committer | Tatsuhiko Kubo <cubicdaiya@gmail.com> | Wed Jul 09 23:20:40 2014 +0900 |
tree | c93ffa0c18faa857ac5d71a2501435ebc167110a | |
parent | 12ca9c9c8fb82d97a3aeb5b3c02b76ebfa66a04b [diff] |
Style: use ngx_strlen() instead of strlen().
diff --git a/src/core/ngx_log.h b/src/core/ngx_log.h index c1a52c4..95ecca5 100644 --- a/src/core/ngx_log.h +++ b/src/core/ngx_log.h
@@ -248,7 +248,7 @@ static ngx_inline void ngx_write_stderr(char *text) { - (void) ngx_write_fd(ngx_stderr, text, strlen(text)); + (void) ngx_write_fd(ngx_stderr, text, ngx_strlen(text)); }