Skip to content

Commit db7dc2f

Browse files
committed
Fix [-Wundef] warning in PDO Firebird extension
1 parent 1c598cf commit db7dc2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/pdo_firebird/firebird_driver.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ static int firebird_handle_begin(pdo_dbh_t *dbh) /* {{{ */
273273
{
274274
pdo_firebird_db_handle *H = (pdo_firebird_db_handle *)dbh->driver_data;
275275
char tpb[8] = { isc_tpb_version3 }, *ptpb = tpb+1;
276-
#if abies_0
276+
#ifdef abies_0
277277
if (dbh->transaction_flags & PDO_TRANS_ISOLATION_LEVEL) {
278278
if (dbh->transaction_flags & PDO_TRANS_READ_UNCOMMITTED) {
279279
/* this is a poor fit, but it's all we have */

0 commit comments

Comments
 (0)