diff options
author | Andrey Hristov <andrey@php.net> | 2010-06-21 14:49:45 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2010-06-21 14:49:45 +0000 |
commit | 698539fa79d575ee962acc5f7caee0d53a30a9fb (patch) | |
tree | 546979f38fcd9865ec7251a145db93efe2c9fffb /ext/mysqlnd | |
parent | 6b990988f1afeedaf1bc15b01e2d41211fb10fbb (diff) | |
download | php-git-698539fa79d575ee962acc5f7caee0d53a30a9fb.tar.gz |
fix valgrind warnings on 64bit, thread_is is strictly 32bit
Diffstat (limited to 'ext/mysqlnd')
-rw-r--r-- | ext/mysqlnd/mysqlnd_wireprotocol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqlnd/mysqlnd_wireprotocol.c b/ext/mysqlnd/mysqlnd_wireprotocol.c index 3975df831b..2285a2f5f5 100644 --- a/ext/mysqlnd/mysqlnd_wireprotocol.c +++ b/ext/mysqlnd/mysqlnd_wireprotocol.c @@ -373,7 +373,7 @@ php_mysqlnd_greet_read(void *_packet, MYSQLND *conn TSRMLS_DC) packet->pre41 = TRUE; } - DBG_INF_FMT("proto=%d server=%s thread_id=%ld", + DBG_INF_FMT("proto=%d server=%s thread_id=%d", packet->protocol_version, packet->server_version, packet->thread_id); DBG_INF_FMT("server_capabilities=%d charset_no=%d server_status=%d", |