]> err.no Git - varnish/commit
Instead of incorrectly assuming that a pthread_t can be meaningfully cast
authordes <des@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Tue, 24 Jul 2007 14:25:54 +0000 (14:25 +0000)
committerdes <des@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Tue, 24 Jul 2007 14:25:54 +0000 (14:25 +0000)
commit81e64db242992c329a5a6491ed641ed0fdfb4ad9
treea3b532b9779658a33f2e7d92a9cfce66616fd7e3
parentdf80f120f61cd10754a4e686c3cfe503cf04d82a
Instead of incorrectly assuming that a pthread_t can be meaningfully cast
to an unsigned int (which triggered warnings on some 64-bit platforms) and
printed with %08lx, incorrectly assume that it can be meaningfully cast to
a void * and printed with %p.  While still incorrect in general terms, the
latter turns out to be correct on the specific systems that we care about.

git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@1754 d4fa192b-c00b-0410-8231-f00ffab90ce4
varnish-cache/bin/varnishreplay/varnishreplay.c