From: Antony Dovgal Date: Tue, 25 Oct 2005 16:02:33 +0000 (+0000) Subject: use correct enum type for the arg X-Git-Tag: php-5.1.0RC4~29 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2af3190a3d17de08cf7af0a1f015addb6202998f;p=php use correct enum type for the arg --- diff --git a/ext/pdo/php_pdo_driver.h b/ext/pdo/php_pdo_driver.h index 26ecdd89b2..8b6b7ac9a7 100755 --- a/ext/pdo/php_pdo_driver.h +++ b/ext/pdo/php_pdo_driver.h @@ -183,7 +183,7 @@ enum pdo_null_handling { }; /* {{{ utils for reading attributes set as driver_options */ -static inline long pdo_attr_lval(zval *options, enum pdo_fetch_type option_name, long defval TSRMLS_DC) +static inline long pdo_attr_lval(zval *options, enum pdo_attribute_type option_name, long defval TSRMLS_DC) { zval **v;