diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2009-10-26 17:46:25 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2009-10-26 17:46:25 +0000 |
| commit | cba113702018887cd9e750dd3852e2b733c62164 (patch) | |
| tree | a81214f88315e35f09925cc961c0227ddde16d00 | |
| parent | 8232053651ecd9d2029e080bf93eb66f27f1d2f3 (diff) | |
| download | nginx-cba113702018887cd9e750dd3852e2b733c62164.tar.gz nginx-cba113702018887cd9e750dd3852e2b733c62164.tar.bz2 | |
merge r3185:
fix building by gcc45
| -rw-r--r-- | src/http/modules/ngx_http_rewrite_module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/modules/ngx_http_rewrite_module.c b/src/http/modules/ngx_http_rewrite_module.c index f7c138dbb..1f98cf829 100644 --- a/src/http/modules/ngx_http_rewrite_module.c +++ b/src/http/modules/ngx_http_rewrite_module.c @@ -446,7 +446,7 @@ ngx_http_rewrite(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) return NGX_CONF_ERROR; } - *code = (uintptr_t) NULL; + *code = NULL; } regex->next = (u_char *) lcf->codes->elts + lcf->codes->nelts |
