Skip to content

Commit 38c3e0e

Browse files
committed
Replace bool with int
1 parent 8ce7268 commit 38c3e0e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

interbase.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -711,12 +711,12 @@ static PHP_INI_DISP(php_ibase_password_displayer_cb)
711711
PUTS(" | "); \
712712
} \
713713
PUTS(str); \
714-
has_puts = true; \
714+
has_puts = 1; \
715715
} while (0)
716716

717717
static PHP_INI_DISP(php_ibase_trans_displayer)
718718
{
719-
bool has_puts = false;
719+
int has_puts = 0;
720720
char *value;
721721

722722
if (type == ZEND_INI_DISPLAY_ORIG && ini_entry->modified) {

0 commit comments

Comments
 (0)