From: Tjerk Meesters Date: Thu, 28 Aug 2014 08:39:35 +0000 (+0800) Subject: Changed 'unsigned size_t' to 'size_t' X-Git-Tag: PRE_PHP7_REMOVALS~234^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=aa161f07231753109ed83bda87dcf1fdb984381a;p=php Changed 'unsigned size_t' to 'size_t' --- diff --git a/ext/mysqli/mysqli_api.c b/ext/mysqli/mysqli_api.c index 10793060ae..962cab600b 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 unsigned size_t mode) +static void mysqli_tx_cor_options_to_string(const MYSQL * const conn, smart_str * str, const size_t mode) { if (mode & TRANS_COR_AND_CHAIN && !(mode & TRANS_COR_AND_NO_CHAIN)) { if (str->s && str->s->len) {