From 9b16f24d9c6a2591be4ce2e4e9e629bd81a2806b Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Mon, 29 Aug 2022 09:19:14 +0200 Subject: score: Fix format Update #4706. --- cpukit/include/rtems/score/priorityimpl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpukit') 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; -- cgit v1.2.3