score: Fix _Objects_Get_information() indentation

This fix relates to a Coverity issue (NESTING_INDENT_MISMATCH).
This commit is contained in:
Sebastian Huber
2021-01-28 11:17:51 +01:00
parent bf8d4b9479
commit 395c15f655

View File

@@ -52,14 +52,15 @@ Objects_Information *_Objects_Get_information(
return NULL; return NULL;
/* /*
* In a multprocessing configuration, we may access remote objects. * In a multiprocessing configuration, we may access remote objects.
* Thus we may have 0 local instances and still have a valid object * Thus we may have 0 local instances and still have a valid object
* pointer. * pointer.
*/ */
#if !defined(RTEMS_MULTIPROCESSING) #if !defined(RTEMS_MULTIPROCESSING)
if ( _Objects_Get_maximum_index( info ) == 0 ) if ( _Objects_Get_maximum_index( info ) == 0 ) {
return NULL; return NULL;
#endif }
#endif
return info; return info;
} }