[rtems commit] score: Fix format

Sebastian Huber sebh at rtems.org
Mon Aug 29 07:10:15 UTC 2022


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

Author:    Sebastian Huber <sebastian.huber at embedded-brains.de>
Date:      Mon Aug 29 09:19:14 2022 +0200

score: Fix format

Update #4706.

---

 cpukit/include/rtems/score/priorityimpl.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cpukit/include/rtems/score/priorityimpl.h b/cpukit/include/rtems/score/priorityimpl.h
index 5a9a1673f6..c9925ac6c4 100644
--- a/cpukit/include/rtems/score/priorityimpl.h
+++ b/cpukit/include/rtems/score/priorityimpl.h
@@ -403,7 +403,7 @@ RTEMS_INLINE_ROUTINE bool _Priority_Less(
   const Priority_Control *the_left;
   const Priority_Node    *the_right;
 
-  the_left = (const Priority_Control*) left;
+  the_left = (const Priority_Control *) left;
   the_right = RTEMS_CONTAINER_OF( right, Priority_Node, Node.RBTree );
 
   return *the_left < the_right->priority;



More information about the vc mailing list