summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/score/src/objectgetinfo.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/cpukit/score/src/objectgetinfo.c b/cpukit/score/src/objectgetinfo.c
index 07b401faf0..a256d20d87 100644
--- a/cpukit/score/src/objectgetinfo.c
+++ b/cpukit/score/src/objectgetinfo.c
@@ -52,14 +52,15 @@ Objects_Information *_Objects_Get_information(
return NULL;
/*
- * In a multprocessing configuration, we may access remote objects.
- * Thus we may have 0 local instances and still have a valid object
- * pointer.
+ * 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 )
- return NULL;
- #endif
+#if !defined(RTEMS_MULTIPROCESSING)
+ if ( _Objects_Get_maximum_index( info ) == 0 ) {
+ return NULL;
+ }
+#endif
return info;
}