summaryrefslogtreecommitdiff
path: root/ext/pdo/php_pdo_driver.h
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2005-10-25 16:02:33 +0000
committerAntony Dovgal <tony2001@php.net>2005-10-25 16:02:33 +0000
commit2af3190a3d17de08cf7af0a1f015addb6202998f (patch)
tree3b5895de9d9c084d47869933eded52d35df1c9ae /ext/pdo/php_pdo_driver.h
parente13d51cea376a7b013eb568fd982d99bc13e9f46 (diff)
downloadphp-git-2af3190a3d17de08cf7af0a1f015addb6202998f.tar.gz
use correct enum type for the arg
Diffstat (limited to 'ext/pdo/php_pdo_driver.h')
-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 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;