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 | 9756f766b64a427828e38f8697cf4dc0edd8eebb (patch) | |
tree | 722adac241dab66d08e2550aef059199b22b2fa7 | |
parent | ec5b65473bcd439ffcbc44c2f7c8d5fce2dab5e5 (diff) | |
download | php-git-9756f766b64a427828e38f8697cf4dc0edd8eebb.tar.gz |
fix valgrind warnings in debug builds
-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 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); |