Style.
Maxim Dounin
7 years ago
155 | 155 | |
156 | 156 | /* the maximum limit size is the maximum u_long value - the page size */ |
157 | 157 | |
158 | if (limit == 0 || limit > (off_t) (NGX_MAX_UINT32_VALUE - ngx_pagesize)) { | |
158 | if (limit == 0 || limit > (off_t) (NGX_MAX_UINT32_VALUE - ngx_pagesize)) | |
159 | { | |
159 | 160 | limit = NGX_MAX_UINT32_VALUE - ngx_pagesize; |
160 | 161 | } |
161 | 162 |