diff options
author | Andrey Hristov <andrey@php.net> | 2011-08-26 12:14:31 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2011-08-26 12:14:31 +0000 |
commit | da2839f71d7c7a128fc697d9d6bf703dacf20380 (patch) | |
tree | c43a56ac0f35f247fee518579a65de1a66980259 /ext | |
parent | b04a052f70a3a247ad963b3f5b9bef27faaf4d6e (diff) | |
download | php-git-da2839f71d7c7a128fc697d9d6bf703dacf20380.tar.gz |
fix valgrind warnings in debug builds
Diffstat (limited to 'ext')
-rw-r--r-- | ext/mysqlnd/mysqlnd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqlnd/mysqlnd.c b/ext/mysqlnd/mysqlnd.c index 80d315a1bd..7f04d35517 100644 --- a/ext/mysqlnd/mysqlnd.c +++ b/ext/mysqlnd/mysqlnd.c @@ -1523,7 +1523,7 @@ MYSQLND_METHOD(mysqlnd_conn, kill)(MYSQLND * conn, unsigned int pid TSRMLS_DC) zend_uchar buff[4]; DBG_ENTER("mysqlnd_conn::kill"); - DBG_INF_FMT("conn=%llu pid=%lu", conn->thread_id, pid); + DBG_INF_FMT("conn=%llu pid=%u", conn->thread_id, pid); int4store(buff, pid); |