From 56698afb6dd0ce4c6358c44ea254324e375cff18 Mon Sep 17 00:00:00 2001 From: George Peter Banyard Date: Tue, 12 May 2020 17:54:02 +0200 Subject: Fix [-Wundef] warning in CLI SAPI --- sapi/cli/php_http_parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sapi/cli/php_http_parser.c') diff --git a/sapi/cli/php_http_parser.c b/sapi/cli/php_http_parser.c index 63769c15ac..6d764b6c0d 100644 --- a/sapi/cli/php_http_parser.c +++ b/sapi/cli/php_http_parser.c @@ -244,7 +244,7 @@ enum flags #define start_state (parser->type == PHP_HTTP_REQUEST ? s_start_req : s_start_res) -#if HTTP_PARSER_STRICT +#ifdef HTTP_PARSER_STRICT # define STRICT_CHECK(cond) if (cond) goto error # define NEW_MESSAGE() (http_should_keep_alive(parser) ? start_state : s_dead) #else -- cgit v1.2.1