diff options
author | Igor Sysoev <igor@sysoev.ru> | 2009-10-06 09:46:16 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2009-10-06 09:46:16 +0000 |
commit | 4ae43f965d10a1ea8df81b216e4b51c2460506b7 (patch) | |
tree | 553164e3ff0c1ac2cfa2bb26009080ba2884a54f /src | |
parent | 5d4b802370e0e3f1bacb68908a6eb7e8c1bdcfd8 (diff) | |
download | nginx-4ae43f965d10a1ea8df81b216e4b51c2460506b7.tar.gz nginx-4ae43f965d10a1ea8df81b216e4b51c2460506b7.zip |
fix building by gcc45
Diffstat (limited to 'src')
-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 |