diff options
author | Igor Sysoev <igor@sysoev.ru> | 2004-03-04 07:04:55 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2004-03-04 07:04:55 +0000 |
commit | a536298c7bd1f525db97facab814a2906214ee7f (patch) | |
tree | 201ef9d639e1ff100684bf0a6781f59602418e35 /src/core/ngx_log.c | |
parent | 5edf387f199efe5b67b2b81a00bc8404bea8365b (diff) | |
download | nginx-a536298c7bd1f525db97facab814a2906214ee7f.tar.gz nginx-a536298c7bd1f525db97facab814a2906214ee7f.zip |
nginx-0.0.2-2004-03-04-10:04:55 import
Diffstat (limited to 'src/core/ngx_log.c')
-rw-r--r-- | src/core/ngx_log.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/ngx_log.c b/src/core/ngx_log.c index 349fe6bb1..371c72519 100644 --- a/src/core/ngx_log.c +++ b/src/core/ngx_log.c @@ -47,10 +47,10 @@ static const char *debug_levels[] = { #if (HAVE_VARIADIC_MACROS) -void ngx_log_error_core(int level, ngx_log_t *log, ngx_err_t err, +void ngx_log_error_core(ngx_uint_t level, ngx_log_t *log, ngx_err_t err, const char *fmt, ...) #else -void ngx_log_error_core(int level, ngx_log_t *log, ngx_err_t err, +void ngx_log_error_core(ngx_uint_t level, ngx_log_t *log, ngx_err_t err, const char *fmt, va_list args) #endif { @@ -176,7 +176,7 @@ static void ngx_log_write(ngx_log_t *log, char *errstr, size_t len) #if !(HAVE_VARIADIC_MACROS) -void ngx_log_error(int level, ngx_log_t *log, ngx_err_t err, +void ngx_log_error(ngx_uint_t level, ngx_log_t *log, ngx_err_t err, const char *fmt, ...) { va_list args; |