mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-08-24 23:38:20 +08:00
2003-01-10 Joel Sherrill <joel@OARcorp.com>
* src/objectmp.c: Corrected use of name parameter to reflect that it is actually the name not a pointer to the name.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2003-01-10 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
* 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 <corsepiu@faw.uni-ulm.de>
|
||||
|
||||
Makefile.am: Don't create $ARCH.
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user