2001-04-26 Joel Sherrill <joel@OARcorp.com>

* src/objectcomparenamestring.c: Fix typos.
This commit is contained in:
Joel Sherrill
2002-04-27 00:20:40 +00:00
parent 2b454faf13
commit bf99393f73
4 changed files with 14 additions and 2 deletions

View File

@@ -1,3 +1,7 @@
2001-04-26 Joel Sherrill <joel@OARcorp.com>
* src/objectcomparenamestring.c: Fix typos.
2001-04-26 Joel Sherrill <joel@OARcorp.com>
* include/rtems/score/object.h, inline/rtems/score/object.inl,

View File

@@ -24,6 +24,8 @@
#include <rtems/score/sysstate.h>
#include <rtems/score/isr.h>
#include <string.h>
/*PAGE
*
* _Objects_Compare_name_string
@@ -45,7 +47,7 @@ boolean _Objects_Compare_name_string(
unsigned32 length
)
{
if ( !strncmp( name_1_p, name_2_p, length ) )
if ( !strncmp( name_1, name_2, length ) )
return TRUE;
return FALSE;
}