From eb7cddd3cf59bd78b989ba3701f335db2b5de450 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Fri, 10 Jan 2003 15:04:01 +0000 Subject: [PATCH] 2003-01-10 Joel Sherrill * src/objectmp.c: Corrected use of name parameter to reflect that it is actually the name not a pointer to the name. --- cpukit/score/ChangeLog | 5 +++++ cpukit/score/src/objectmp.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/cpukit/score/ChangeLog b/cpukit/score/ChangeLog index 5f9b4c795a..e5b472fb02 100644 --- a/cpukit/score/ChangeLog +++ b/cpukit/score/ChangeLog @@ -1,3 +1,8 @@ +2003-01-10 Joel Sherrill + + * src/objectmp.c: Corrected use of name parameter to reflect that it + is actually the name not a pointer to the name. + 2002-12-12 Ralf Corsepius Makefile.am: Don't create $ARCH. diff --git a/cpukit/score/src/objectmp.c b/cpukit/score/src/objectmp.c index bbd2f18cc5..f0595b12fd 100644 --- a/cpukit/score/src/objectmp.c +++ b/cpukit/score/src/objectmp.c @@ -163,7 +163,7 @@ Objects_Name_to_id_errors _Objects_MP_Global_name_search ( Chain_Control *the_chain; Chain_Node *the_node; Objects_MP_Control *the_object; - unsigned32 name_to_use = *(unsigned32 *)the_name; /* XXX variable */ + unsigned32 name_to_use = the_name; /* XXX only fixed length names */ if ( nodes_to_search > _Objects_Maximum_nodes ) return OBJECTS_INVALID_NODE;