From bcd8a695c6dfc8463596cf97d886e32eec959417 Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Tue, 1 Jul 2008 07:34:37 +0000 Subject: [PATCH] int -> long --- http_functions.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http_functions.c b/http_functions.c index f7f73f7..7b58cf7 100644 --- a/http_functions.c +++ b/http_functions.c @@ -256,7 +256,7 @@ PHP_FUNCTION(http_negotiate_content_type) Send HTTP status code. */ PHP_FUNCTION(http_send_status) { - int status = 0; + long status = 0; if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &status) != SUCCESS) { RETURN_FALSE; -- 2.30.2