From: Antony Dovgal Date: Tue, 25 Oct 2005 16:03:11 +0000 (+0000) Subject: use correct enum type for the arg X-Git-Tag: RELEASE_0_9_1~14 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=aad3dcd4934436376f7fa4bf698ee06f47dad66b;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 171a25df2b..c9244a82b4 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;