summaryrefslogtreecommitdiffstats
path: root/c/src/exec/score
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2002-07-16 22:22:15 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2002-07-16 22:22:15 +0000
commit18c19a71060b78846ae32b0566235cd1c020a08d (patch)
tree70ed1d021ec63dc068c527744c3f76ba0f1542ac /c/src/exec/score
parent2002-07-06 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-18c19a71060b78846ae32b0566235cd1c020a08d.tar.bz2
2002-07-16 Joel Sherrill <joel@OARcorp.com>
* macros/rtems/score/object.inl: Corrected typos in _Objects_Open, _Objects_Close, and _Objects_Namespace_remove.
Diffstat (limited to 'c/src/exec/score')
-rw-r--r--c/src/exec/score/ChangeLog5
-rw-r--r--c/src/exec/score/macros/rtems/score/object.inl6
2 files changed, 8 insertions, 3 deletions
diff --git a/c/src/exec/score/ChangeLog b/c/src/exec/score/ChangeLog
index c6e114dae4..bcf4ec52ff 100644
--- a/c/src/exec/score/ChangeLog
+++ b/c/src/exec/score/ChangeLog
@@ -1,3 +1,8 @@
+2002-07-16 Joel Sherrill <joel@OARcorp.com>
+
+ * macros/rtems/score/object.inl: Corrected typos in
+ _Objects_Open, _Objects_Close, and _Objects_Namespace_remove.
+
2002-07-05 Joel Sherrill <joel@OARcorp.com>
* macros/rtems/score/object.inl: Corrected implementation of
diff --git a/c/src/exec/score/macros/rtems/score/object.inl b/c/src/exec/score/macros/rtems/score/object.inl
index 6bd7765319..10721497f2 100644
--- a/c/src/exec/score/macros/rtems/score/object.inl
+++ b/c/src/exec/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