diff options
author | Igor Sysoev <igor@sysoev.ru> | 2006-09-25 20:04:54 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2006-09-25 20:04:54 +0000 |
commit | 94124f3983d7c8a590f96a649cb12f161a147da0 (patch) | |
tree | cd2b564f7c62170d6a98f94997087ca8b4cf3bbb /src | |
parent | 8a3cdc00ffea4ea4fbba2125771293352df6e1ae (diff) | |
download | nginx-94124f3983d7c8a590f96a649cb12f161a147da0.tar.gz nginx-94124f3983d7c8a590f96a649cb12f161a147da0.zip |
fix msvc build failure introduced by previous commit
Diffstat (limited to 'src')
-rw-r--r-- | src/http/ngx_http_special_response.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_special_response.c b/src/http/ngx_http_special_response.c index 8ddfce9c1..d249c272e 100644 --- a/src/http/ngx_http_special_response.c +++ b/src/http/ngx_http_special_response.c @@ -299,7 +299,7 @@ static ngx_str_t error_pages[] = { }; -static ngx_str_t ngx_http_get_name = { 3, "GET " }; +static ngx_str_t ngx_http_get_name = { 3, (u_char *) "GET " }; ngx_int_t |