summaryrefslogtreecommitdiff
path: root/ext/mysqlnd/mysqlnd.c
diff options
context:
space:
mode:
authorAndrey Hristov <andrey@php.net>2011-08-26 12:14:31 +0000
committerAndrey Hristov <andrey@php.net>2011-08-26 12:14:31 +0000
commit9756f766b64a427828e38f8697cf4dc0edd8eebb (patch)
tree722adac241dab66d08e2550aef059199b22b2fa7 /ext/mysqlnd/mysqlnd.c
parentec5b65473bcd439ffcbc44c2f7c8d5fce2dab5e5 (diff)
downloadphp-git-9756f766b64a427828e38f8697cf4dc0edd8eebb.tar.gz
fix valgrind warnings in debug builds
Diffstat (limited to 'ext/mysqlnd/mysqlnd.c')
-rw-r--r--ext/mysqlnd/mysqlnd.c2
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);