diff options
author | Igor Sysoev <igor@sysoev.ru> | 2008-01-09 15:27:27 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2008-01-09 15:27:27 +0000 |
commit | 66b8ad6b08b799f77c6b9aa438051a7e92275517 (patch) | |
tree | 48d53a8066b3f8cbc70095fae9f2f62d7b64c74b /src/http/ngx_http_core_module.c | |
parent | 57b088d1cc584a67a8c2c54e9503939b5970da2d (diff) | |
download | nginx-66b8ad6b08b799f77c6b9aa438051a7e92275517.tar.gz nginx-66b8ad6b08b799f77c6b9aa438051a7e92275517.zip |
fix building by gcc42, etc. introduced in r1858
Diffstat (limited to 'src/http/ngx_http_core_module.c')
-rw-r--r-- | src/http/ngx_http_core_module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_core_module.c b/src/http/ngx_http_core_module.c index 68e7891ac..574e92542 100644 --- a/src/http/ngx_http_core_module.c +++ b/src/http/ngx_http_core_module.c @@ -113,7 +113,7 @@ static ngx_conf_enum_t ngx_http_core_satisfy[] = { }; -static ngx_str_t ngx_http_core_get_method = { 3, "GET " }; +static ngx_str_t ngx_http_core_get_method = { 3, (u_char *) "GET " }; #if (NGX_HTTP_GZIP) |