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.3.9RC1~337 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9756f766b64a427828e38f8697cf4dc0edd8eebb;p=php fix valgrind warnings in debug builds --- diff --git a/ext/mysqlnd/mysqlnd.c b/ext/mysqlnd/mysqlnd.c index 5c8fe434e4..7f101bde0f 100644 --- a/ext/mysqlnd/mysqlnd.c +++ b/ext/mysqlnd/mysqlnd.c @@ -1407,7 +1407,7 @@ MYSQLND_METHOD(mysqlnd_conn, kill)(MYSQLND * conn, unsigned int pid TSRMLS_DC) char 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);