diff options
| author | Frank M. Kromann <fmk@php.net> | 2003-01-08 23:19:54 +0000 |
|---|---|---|
| committer | Frank M. Kromann <fmk@php.net> | 2003-01-08 23:19:54 +0000 |
| commit | 7cd7cad1b5207146fd277f5f769a8d9261be6115 (patch) | |
| tree | 5cc3e66903fd2a9476a95157136a21f853663c6e /ext/fbsql/php_fbsql.h | |
| parent | 072be90d6fde8923b7525c6053fc1af43b6eed6d (diff) | |
| download | php-git-7cd7cad1b5207146fd277f5f769a8d9261be6115.tar.gz | |
Changed global data type to avoid problems with initialization
Diffstat (limited to 'ext/fbsql/php_fbsql.h')
| -rw-r--r-- | ext/fbsql/php_fbsql.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/fbsql/php_fbsql.h b/ext/fbsql/php_fbsql.h index 118ff5b68d..1d910e2984 100644 --- a/ext/fbsql/php_fbsql.h +++ b/ext/fbsql/php_fbsql.h @@ -105,9 +105,9 @@ static void php_fbsql_fetch_hash(INTERNAL_FUNCTION_PARAMETERS, int result_type); static void php_fbsql_do_connect(INTERNAL_FUNCTION_PARAMETERS, int persistent); ZEND_BEGIN_MODULE_GLOBALS(fbsql) - long allowPersistent; - long generateWarnings; - long autoCommit; + zend_bool allowPersistent; + zend_bool generateWarnings; + zend_bool autoCommit; long maxPersistent; long maxLinks; long maxConnections; |
