Skip to content

Commit

Permalink
Fixed wrong type of the "line" field.
Browse files Browse the repository at this point in the history
The new type ngx_uint_t was supposed when formatting the line number.
  • Loading branch information
arut committed Aug 18, 2016
1 parent 535550b commit eecc68c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/mail/ngx_mail.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion src/stream/ngx_stream.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit eecc68c

Please sign in to comment.