summaryrefslogtreecommitdiff
path: root/ext/pdo
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2005-10-25 16:03:11 +0000
committerAntony Dovgal <tony2001@php.net>2005-10-25 16:03:11 +0000
commitaad3dcd4934436376f7fa4bf698ee06f47dad66b (patch)
tree1c4c5a61ff41687dc45bce23d387e21d8207b04d /ext/pdo
parent85aaa8e388b23675337503d2f78fa986d991ba19 (diff)
downloadphp-git-aad3dcd4934436376f7fa4bf698ee06f47dad66b.tar.gz
use correct enum type for the arg
Diffstat (limited to 'ext/pdo')
-rwxr-xr-xext/pdo/php_pdo_driver.h2
1 files changed, 1 insertions, 1 deletions
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;