mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Fix more mysqlnd debug printf formats
These didn't show up on my system...
This commit is contained in:
parent
3acdab864d
commit
57f06b6058
2 changed files with 11 additions and 11 deletions
|
@ -1259,7 +1259,7 @@ php_mysqlnd_rset_field_read(MYSQLND_CONN_DATA * conn, void * _packet)
|
|||
len != MYSQLND_NULL_LENGTH)
|
||||
{
|
||||
BAIL_IF_NO_MORE_DATA;
|
||||
DBG_INF_FMT("Def found, length %lu", len);
|
||||
DBG_INF_FMT("Def found, length " ZEND_ULONG_FMT, len);
|
||||
meta->def = packet->memory_pool->get_chunk(packet->memory_pool, len + 1);
|
||||
memcpy(meta->def, p, len);
|
||||
meta->def[len] = '\0';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue