Author: paultcochrane Date: Sun Dec 9 14:01:32 2007 New Revision: 23676 Modified: trunk/src/scheduler.c
Log: [core] Removed compiler warning by properly casting an argument to pthread_create() Modified: trunk/src/scheduler.c ============================================================================== --- trunk/src/scheduler.c (original) +++ trunk/src/scheduler.c Sun Dec 9 14:01:32 2007 @@ -78,7 +78,7 @@ /* Start the scheduler runloop */ THREAD_CREATE_JOINABLE(sched_struct->runloop_handle, - scheduler_runloop, (void *) scheduler); + (void *) scheduler_runloop, (void *) scheduler); } }