Fix compiler warning

This commit is contained in:
Ryan Dahl 2011-05-09 02:27:26 -07:00
parent cc72a0d1ed
commit f71ea7f65d

View File

@ -319,7 +319,7 @@ uintptr_t oio_create_thread(void (*entry)(void* arg), void* arg) {
return 0;
}
return t;
return (uintptr_t)t;
}