From: Andrey Hristov Date: Fri, 26 Aug 2011 12:14:31 +0000 (+0000) Subject: fix valgrind warnings in debug builds X-Git-Tag: php-5.4.0beta1~372 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=da2839f71d7c7a128fc697d9d6bf703dacf20380;p=php fix valgrind warnings in debug builds --- 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);