diff options
author | Roman Arutyunyan <arut@nginx.com> | 2016-08-18 17:13:07 +0300 |
---|---|---|
committer | Roman Arutyunyan <arut@nginx.com> | 2016-08-18 17:13:07 +0300 |
commit | eecc68ce1787a519e4cf195f12c887d7d2ba9b0a (patch) | |
tree | 1e475e66e559982476140240b39aa4932e24d1ed /src/stream/ngx_stream.h | |
parent | 535550b406b0f6db18697247c3c132ed502cdd46 (diff) | |
download | nginx-eecc68ce1787a519e4cf195f12c887d7d2ba9b0a.tar.gz nginx-eecc68ce1787a519e4cf195f12c887d7d2ba9b0a.zip |
Fixed wrong type of the "line" field.
The new type ngx_uint_t was supposed when formatting the line number.
Diffstat (limited to 'src/stream/ngx_stream.h')
-rw-r--r-- | src/stream/ngx_stream.h | 2 |
1 files changed, 1 insertions, 1 deletions
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; |