mirror of
https://github.com/outbackdingo/parodus.git
synced 2026-01-27 18:20:04 +00:00
spin_thread.c: don't assume pthread_t can be cast to int
Fix build issues for 64bit targets. Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
This commit is contained in:
@@ -44,7 +44,7 @@ void StartThread(void *(*start_routine) (void *))
|
||||
}
|
||||
else
|
||||
{
|
||||
ParodusPrint("Thread created Successfully %d\n", (int ) threadId);
|
||||
ParodusPrint("Thread created Successfully %lu\n", (unsigned long) threadId);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user