diff options
author | Anatol Belski <ab@php.net> | 2014-08-21 09:54:40 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-08-21 09:54:40 +0200 |
commit | eb1871b3fb63f48216f20663f0cc479d322e3970 (patch) | |
tree | 7110221a926e068a2e946043f555fc272f8283d6 /ext/mysqli/mysqli_api.c | |
parent | 8d6ef99a390f9437e2eda113b04f564c4e94b294 (diff) | |
download | php-git-eb1871b3fb63f48216f20663f0cc479d322e3970.tar.gz |
yet trivial fixes to mysql exts
Diffstat (limited to 'ext/mysqli/mysqli_api.c')
-rw-r--r-- | ext/mysqli/mysqli_api.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqli/mysqli_api.c b/ext/mysqli/mysqli_api.c index d20e8e9229..d2567ae1b4 100644 --- a/ext/mysqli/mysqli_api.c +++ b/ext/mysqli/mysqli_api.c @@ -391,7 +391,7 @@ mysqli_stmt_bind_result_do_bind(MY_STMT *stmt, zval *args, unsigned int argc, un MYSQL_BIND *bind; int i, ofs; int var_cnt = argc - start; - long col_type; + php_int_t col_type; php_uint_t rc; /* prevent leak if variables are already bound */ |