From 18c19a71060b78846ae32b0566235cd1c020a08d Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 16 Jul 2002 22:22:15 +0000 Subject: 2002-07-16 Joel Sherrill * macros/rtems/score/object.inl: Corrected typos in _Objects_Open, _Objects_Close, and _Objects_Namespace_remove. --- cpukit/score/macros/rtems/score/object.inl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cpukit/score/macros/rtems/score/object.inl') diff --git a/cpukit/score/macros/rtems/score/object.inl b/cpukit/score/macros/rtems/score/object.inl index 6bd7765319..10721497f2 100644 --- a/cpukit/score/macros/rtems/score/object.inl +++ b/cpukit/score/macros/rtems/score/object.inl @@ -152,11 +152,11 @@ \ if ( (_information)->is_string ) \ /* _Objects_Copy_name_string( (_name), (_the_object)->name ); */\ - (_the_object)->name = name; \ + (_the_object)->name = (_name); \ else \ /* _Objects_Copy_name_raw( \ (_name), (_the_object)->name, (_information)->name_length ); */ \ - (_the_object)->name = name; \ + (_the_object)->name = (_name); \ } while (0) /*PAGE @@ -181,7 +181,7 @@ */ #define _Objects_Namespace_remove( _information, _the_object ) \ - (_the_object)->name = 0 \ + (_the_object)->name = 0; \ _Objects_Clear_name( (_the_object)->name, (_information)->name_length ) #endif -- cgit v1.2.3