fix types
Igor Sysoev
13 years ago
44 | 44 | |
45 | 45 | /* The ten fixed arguments */ |
46 | 46 | |
47 | static int argument_number[] = { | |
47 | static ngx_uint_t argument_number[] = { | |
48 | 48 | NGX_CONF_NOARGS, |
49 | 49 | NGX_CONF_TAKE1, |
50 | 50 | NGX_CONF_TAKE2, |
432 | 432 | ngx_conf_read_token(ngx_conf_t *cf) |
433 | 433 | { |
434 | 434 | u_char *start, ch, *src, *dst; |
435 | int len; | |
436 | int found, need_space, last_space, sharp_comment, variable; | |
437 | int quoted, s_quoted, d_quoted; | |
435 | size_t len; | |
438 | 436 | ssize_t n; |
437 | ngx_uint_t found, need_space, last_space, sharp_comment, variable; | |
438 | ngx_uint_t quoted, s_quoted, d_quoted; | |
439 | 439 | ngx_str_t *word; |
440 | 440 | ngx_buf_t *b; |
441 | 441 |