[rtems commit] Fixed return in void function

Sebastian Huber sebh at rtems.org
Tue Apr 2 11:04:36 UTC 2013


Module:    rtems
Branch:    master
Commit:    f71fc635a20a6a94c08103eed6b9c056f98ddb1c
Changeset: http://git.rtems.org/rtems/commit/?id=f71fc635a20a6a94c08103eed6b9c056f98ddb1c

Author:    Andreas Heinig <andreas.heinig at cs.tu-dortmund.de>
Date:      Tue Apr  2 12:49:23 2013 +0200

Fixed return in void function

---

 cpukit/score/inline/rtems/score/scheduler.inl |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

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 );
 }
 
 /**




More information about the vc mailing list