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,13 +52,14 @@ Objects_Information *_Objects_Get_information(
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
* pointer.
*/
#if !defined(RTEMS_MULTIPROCESSING)
if ( _Objects_Get_maximum_index( info ) == 0 )
if ( _Objects_Get_maximum_index( info ) == 0 ) {
return NULL;
}
#endif
return info;