# HG changeset patch # User Roman Arutyunyan # Date 1471529587 -10800 # Node ID a2f57dfa65a937d1156b7770693f11be9ac09437 # Parent 873d7053efb9c8617174c741a760041637ac10e6 Fixed wrong type of the "line" field. The new type ngx_uint_t was supposed when formatting the line number. diff --git a/src/mail/ngx_mail.h b/src/mail/ngx_mail.h --- 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 --- 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;