summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Peter Banyard <girgias@php.net>2020-05-20 15:41:07 +0200
committerGeorge Peter Banyard <girgias@php.net>2020-05-20 16:29:52 +0200
commitdb7dc2fa2fdea20a70f1a45c2e05988579398d7a (patch)
tree4edeb333f69d160d1b95b780b9752d3157e150a4
parent1c598cf6a8086afd42171b1771dac94d53debd13 (diff)
downloadphp-git-db7dc2fa2fdea20a70f1a45c2e05988579398d7a.tar.gz
Fix [-Wundef] warning in PDO Firebird extension
-rw-r--r--ext/pdo_firebird/firebird_driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_firebird/firebird_driver.c b/ext/pdo_firebird/firebird_driver.c
index f3e71e8313..4eb4f10ee0 100644
--- a/ext/pdo_firebird/firebird_driver.c
+++ b/ext/pdo_firebird/firebird_driver.c
@@ -273,7 +273,7 @@ static int firebird_handle_begin(pdo_dbh_t *dbh) /* {{{ */
{
pdo_firebird_db_handle *H = (pdo_firebird_db_handle *)dbh->driver_data;
char tpb[8] = { isc_tpb_version3 }, *ptpb = tpb+1;
-#if abies_0
+#ifdef abies_0
if (dbh->transaction_flags & PDO_TRANS_ISOLATION_LEVEL) {
if (dbh->transaction_flags & PDO_TRANS_READ_UNCOMMITTED) {
/* this is a poor fit, but it's all we have */