[PATCH] [Scheduler] Fixed return in void function
Andreas Heinig
andreas.heinig at cs.tu-dortmund.de
Tue Apr 2 10:49:23 UTC 2013
---
cpukit/score/inline/rtems/score/scheduler.inl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cpukit/score/inline/rtems/score/scheduler.inl b/cpukit/score/inline/rtems/score/scheduler.inl
index 20460d1..e3ced39 100644
--- a/cpukit/score/inline/rtems/score/scheduler.inl
+++ b/cpukit/score/inline/rtems/score/scheduler.inl
@@ -118,7 +118,7 @@ RTEMS_INLINE_ROUTINE void _Scheduler_Free(
Thread_Control *the_thread
)
{
- return _Scheduler.Operations.free( the_thread );
+ _Scheduler.Operations.free( the_thread );
}
/**
--
1.7.10.4
More information about the devel
mailing list