From f71ea7f65da20992c5e96b6f0a695b128a85be0a Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Mon, 9 May 2011 02:27:26 -0700 Subject: [PATCH] Fix compiler warning --- test/runner-unix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runner-unix.c b/test/runner-unix.c index a9e41135..7dea97f4 100644 --- a/test/runner-unix.c +++ b/test/runner-unix.c @@ -319,7 +319,7 @@ uintptr_t oio_create_thread(void (*entry)(void* arg), void* arg) { return 0; } - return t; + return (uintptr_t)t; }