Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2008-08-27 01:04:06 +0400
committerIgor Sysoev <igor@sysoev.ru>2008-08-27 01:04:06 +0400
commita6e337fdef7365d670e132e34f928bd82ce5f8a1 (patch)
tree94cd6041f1c37cc537422c93dc7a72ea83cc1a03 /src/core
parentb0f1db101037b0f6f7b96ec62458697bddfc352c (diff)
fix types
Diffstat (limited to 'src/core')
-rw-r--r--src/core/ngx_conf_file.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/ngx_conf_file.c b/src/core/ngx_conf_file.c
index 7da9997ca..23c150cb2 100644
--- a/src/core/ngx_conf_file.c
+++ b/src/core/ngx_conf_file.c
@@ -45,7 +45,7 @@ ngx_module_t ngx_conf_module = {
/* The ten fixed arguments */
-static int argument_number[] = {
+static ngx_uint_t argument_number[] = {
NGX_CONF_NOARGS,
NGX_CONF_TAKE1,
NGX_CONF_TAKE2,
@@ -433,10 +433,10 @@ static ngx_int_t
ngx_conf_read_token(ngx_conf_t *cf)
{
u_char *start, ch, *src, *dst;
- int len;
- int found, need_space, last_space, sharp_comment, variable;
- int quoted, s_quoted, d_quoted;
+ size_t len;
ssize_t n;
+ ngx_uint_t found, need_space, last_space, sharp_comment, variable;
+ ngx_uint_t quoted, s_quoted, d_quoted;
ngx_str_t *word;
ngx_buf_t *b;