diff options
author | Andrey Hristov <andrey@php.net> | 2014-03-10 17:25:53 +0200 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2014-03-10 17:25:53 +0200 |
commit | 990f9c8f3f8ce926c9b82538be6dc538e10b6405 (patch) | |
tree | f286f787e75d52338dafcd9eb915fda45ce59104 /ext/mysqli/mysqli_warning.c | |
parent | c8033ac2076bf4b4d66f8d350b4afc232a863419 (diff) | |
download | php-git-990f9c8f3f8ce926c9b82538be6dc538e10b6405.tar.gz |
Switch from a single flag to a flag byte
Diffstat (limited to 'ext/mysqli/mysqli_warning.c')
-rw-r--r-- | ext/mysqli/mysqli_warning.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqli/mysqli_warning.c b/ext/mysqli/mysqli_warning.c index e100319e61..7a35a7e8ce 100644 --- a/ext/mysqli/mysqli_warning.c +++ b/ext/mysqli/mysqli_warning.c @@ -133,7 +133,7 @@ MYSQLI_WARNING * php_get_warnings(MYSQLND_CONN_DATA * mysql TSRMLS_DC) return NULL; } - result = mysql->m->use_result(mysql TSRMLS_CC); + result = mysql->m->use_result(mysql, 0 TSRMLS_CC); for (;;) { zval **entry; |