From eecc68ce1787a519e4cf195f12c887d7d2ba9b0a Mon Sep 17 00:00:00 2001 From: Roman Arutyunyan Date: Thu, 18 Aug 2016 17:13:07 +0300 Subject: [PATCH] Fixed wrong type of the "line" field. The new type ngx_uint_t was supposed when formatting the line number. --- src/mail/ngx_mail.h | 2 +- src/stream/ngx_stream.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mail/ngx_mail.h b/src/mail/ngx_mail.h index ae1aa417a..57a987e8d 100644 --- a/src/mail/ngx_mail.h +++ b/src/mail/ngx_mail.h @@ -117,7 +117,7 @@ typedef struct { ngx_str_t server_name; u_char *file_name; - ngx_int_t line; + ngx_uint_t line; ngx_resolver_t *resolver; ngx_log_t *error_log; diff --git a/src/stream/ngx_stream.h b/src/stream/ngx_stream.h index 807ab5b08..75b784a9e 100644 --- a/src/stream/ngx_stream.h +++ b/src/stream/ngx_stream.h @@ -136,7 +136,7 @@ typedef struct { ngx_stream_conf_ctx_t *ctx; u_char *file_name; - ngx_int_t line; + ngx_uint_t line; ngx_flag_t tcp_nodelay;