summaryrefslogtreecommitdiff
path: root/ext/pdo/php_pdo_driver.h
diff options
context:
space:
mode:
authorKalle Sommer Nielsen <kalle@php.net>2010-07-13 23:59:54 +0000
committerKalle Sommer Nielsen <kalle@php.net>2010-07-13 23:59:54 +0000
commite71ee33358c7dc4efdb52af5bd89f548d86b3561 (patch)
tree06fc426655f633afde39462beba2e8060b001151 /ext/pdo/php_pdo_driver.h
parent00fabe553ae0a64a1b132a35b4dcbf5722e29fb8 (diff)
downloadphp-git-e71ee33358c7dc4efdb52af5bd89f548d86b3561.tar.gz
Fixed bug #51943 (Several files are out of ANSI spec)
# Based on patch by CoreyStup at gmail dot com
Diffstat (limited to 'ext/pdo/php_pdo_driver.h')
-rwxr-xr-xext/pdo/php_pdo_driver.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/pdo/php_pdo_driver.h b/ext/pdo/php_pdo_driver.h
index 06d09b2d17..683e36b562 100755
--- a/ext/pdo/php_pdo_driver.h
+++ b/ext/pdo/php_pdo_driver.h
@@ -188,7 +188,7 @@ enum pdo_case_conversion {
enum pdo_null_handling {
PDO_NULL_NATURAL = 0,
PDO_NULL_EMPTY_STRING = 1,
- PDO_NULL_TO_STRING = 2,
+ PDO_NULL_TO_STRING = 2
};
/* {{{ utils for reading attributes set as driver_options */
@@ -348,7 +348,7 @@ enum pdo_param_event {
PDO_PARAM_EVT_EXEC_POST,
PDO_PARAM_EVT_FETCH_PRE,
PDO_PARAM_EVT_FETCH_POST,
- PDO_PARAM_EVT_NORMALIZE,
+ PDO_PARAM_EVT_NORMALIZE
};
typedef int (*pdo_stmt_param_hook_func)(pdo_stmt_t *stmt, struct pdo_bound_param_data *param, enum pdo_param_event event_type TSRMLS_DC);