summaryrefslogtreecommitdiff
path: root/ext/mysqli/mysqli_warning.c
diff options
context:
space:
mode:
authorAndrey Hristov <andrey@php.net>2014-03-10 17:25:53 +0200
committerAndrey Hristov <andrey@php.net>2014-03-10 17:25:53 +0200
commit990f9c8f3f8ce926c9b82538be6dc538e10b6405 (patch)
treef286f787e75d52338dafcd9eb915fda45ce59104 /ext/mysqli/mysqli_warning.c
parentc8033ac2076bf4b4d66f8d350b4afc232a863419 (diff)
downloadphp-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.c2
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;