From 4ed14dcbc06f8e4a07e25e9ce21ec08e76bd3cf6 Mon Sep 17 00:00:00 2001 From: Brian Cully Date: Tue, 6 Apr 2010 11:04:20 -0400 Subject: Use uint64_t as cast for pthread_self(). --- client/thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'client/thread.c') diff --git a/client/thread.c b/client/thread.c index 58c79a3..c9ae4b9 100644 --- a/client/thread.c +++ b/client/thread.c @@ -13,7 +13,7 @@ thread_id() { short i; - i = ((unsigned int)pthread_self() & 0xff) | (getpid() << 8); + i = ((uint64_t)pthread_self() & 0xff) | (getpid() << 8); return i; } -- cgit v1.2.3