Fixed return in void function

This commit is contained in:
Andreas Heinig
2013-04-02 12:49:23 +02:00
committed by Sebastian Huber
parent aa11df6e89
commit f71fc635a2

View File

@@ -118,7 +118,7 @@ RTEMS_INLINE_ROUTINE void _Scheduler_Free(
Thread_Control *the_thread Thread_Control *the_thread
) )
{ {
return _Scheduler.Operations.free( the_thread ); _Scheduler.Operations.free( the_thread );
} }
/** /**