From 2ec764f84a52e56acf8925a086ab1cfd4a1eac41 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 12 Jun 2003 15:40:32 +0000 Subject: [PATCH] 2003-06-12 Joel Sherrill * src/objectmp.c: Removed warnings. --- cpukit/score/ChangeLog | 4 ++++ cpukit/score/src/objectmp.c | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/cpukit/score/ChangeLog b/cpukit/score/ChangeLog index 67d1583911..2ee5b08a5f 100644 --- a/cpukit/score/ChangeLog +++ b/cpukit/score/ChangeLog @@ -1,3 +1,7 @@ +2003-06-12 Joel Sherrill + + * src/objectmp.c: Removed warnings. + 2003-03-18 Till Straumann PR 356/bsps diff --git a/cpukit/score/src/objectmp.c b/cpukit/score/src/objectmp.c index f0595b12fd..abcc1dd72f 100644 --- a/cpukit/score/src/objectmp.c +++ b/cpukit/score/src/objectmp.c @@ -163,7 +163,9 @@ 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 = the_name; /* XXX only fixed length names */ + unsigned32 name_to_use; + + name_to_use = *(unsigned32 *)the_name; /* XXX only fixed length names */ if ( nodes_to_search > _Objects_Maximum_nodes ) return OBJECTS_INVALID_NODE;