From eb7cddd3cf59bd78b989ba3701f335db2b5de450 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Fri, 10 Jan 2003 15:04:01 +0000 Subject: 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/src/objectmp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpukit/score/src') 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; -- cgit v1.2.3