From 66b8ad6b08b799f77c6b9aa438051a7e92275517 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Wed, 9 Jan 2008 15:27:27 +0000 Subject: [PATCH] fix building by gcc42, etc. introduced in r1858 --- src/http/ngx_http_core_module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)