diff options
author | Anatol Belski <ab@php.net> | 2014-08-28 10:54:27 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-08-28 11:38:21 +0200 |
commit | 0b048435736171732a57268899d7bdb14379cd90 (patch) | |
tree | 9541d114b80650135d4046e9b2c7e419dfbf535c | |
parent | 6a7c60540b1058302e43cbba227702272350fff4 (diff) | |
download | php-git-0b048435736171732a57268899d7bdb14379cd90.tar.gz |
fix type
-rw-r--r-- | ext/mysqli/mysqli_api.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/mysqli/mysqli_api.c b/ext/mysqli/mysqli_api.c index 962cab600b..d8596c9620 100644 --- a/ext/mysqli/mysqli_api.c +++ b/ext/mysqli/mysqli_api.c @@ -37,7 +37,7 @@ #if !defined(MYSQLI_USE_MYSQLND) /* {{{ mysqli_tx_cor_options_to_string */ -static void mysqli_tx_cor_options_to_string(const MYSQL * const conn, smart_str * str, const size_t mode) +static void mysqli_tx_cor_options_to_string(const MYSQL * const conn, smart_str * str, const uint32_t mode) { if (mode & TRANS_COR_AND_CHAIN && !(mode & TRANS_COR_AND_NO_CHAIN)) { if (str->s && str->s->len) { @@ -108,7 +108,7 @@ mysqli_escape_string_for_tx_name_in_comment(const char * const name TSRMLS_DC) /* }}} */ /* {{{ mysqli_commit_or_rollback_libmysql */ -static int mysqli_commit_or_rollback_libmysql(MYSQL * conn, zend_bool commit, const unsigned int mode, const char * const name TSRMLS_DC) +static int mysqli_commit_or_rollback_libmysql(MYSQL * conn, zend_bool commit, const uint32_t mode, const char * const name TSRMLS_DC) { int ret; smart_str tmp_str = {0}; |