summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/src/partident.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2002-07-05 18:14:30 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2002-07-05 18:14:30 +0000
commit485c9741ab214a64777d45d482f0a86fe2c5ebdd (patch)
tree45d117fd48a0e4f54f3014a5fe1a225602bfdba9 /cpukit/rtems/src/partident.c
parent2002-07-05 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-485c9741ab214a64777d45d482f0a86fe2c5ebdd.tar.bz2
2002-07-05 Joel Sherrill <joel@OARcorp.com>
* src/dpmemident.c, src/msgqident.c, src/partident.c, src/ratemonident.c, src/regionident.c, src/semident.c, src/timerident.c: Corrected use of name parameter to be consistent with fixes implemented to string name processing which were committed with the POSIX Message Queue update.
Diffstat (limited to 'cpukit/rtems/src/partident.c')
-rw-r--r--cpukit/rtems/src/partident.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/rtems/src/partident.c b/cpukit/rtems/src/partident.c
index 2f7029cd63..ce65b76ae9 100644
--- a/cpukit/rtems/src/partident.c
+++ b/cpukit/rtems/src/partident.c
@@ -47,7 +47,7 @@ rtems_status_code rtems_partition_ident(
{
Objects_Name_to_id_errors status;
- status = _Objects_Name_to_id( &_Partition_Information, &name, node, id );
+ status = _Objects_Name_to_id( &_Partition_Information, name, node, id );
return _Status_Object_name_errors_to_status[ status ];
}