From 73cc53bc78ac31cf37f24f16573e22616c90b3b6 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Fri, 29 May 2015 09:47:41 +0200 Subject: [PATCH] fix build --- src/php_pqcur.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/php_pqcur.c b/src/php_pqcur.c index a84041e..a81f38e 100644 --- a/src/php_pqcur.c +++ b/src/php_pqcur.c @@ -62,7 +62,8 @@ static void cur_close(php_pqcur_object_t *obj, zend_bool async, zend_bool silent static void cur_open(INTERNAL_FUNCTION_PARAMETERS, zend_bool async) { zend_error_handling zeh; - STATUS rv; + ZEND_RESULT_CODE rv; + php_pqcur_object_t *obj; zend_replace_error_handling(EH_THROW, exce(EX_INVALID_ARGUMENT), &zeh TSRMLS_CC); rv = zend_parse_parameters_none(); @@ -72,7 +73,7 @@ static void cur_open(INTERNAL_FUNCTION_PARAMETERS, zend_bool async) return; } - php_pqcur_object_t *obj = zend_object_store_get_object(getThis() TSRMLS_CC); + obj = zend_object_store_get_object(getThis() TSRMLS_CC); if (!obj->intern) { throw_exce(EX_UNINITIALIZED TSRMLS_CC, "pq\\Cursor not initialized"); -- 2.30.2