summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/objectclearname.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/objectclearname.c')
-rw-r--r--cpukit/score/src/objectclearname.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpukit/score/src/objectclearname.c b/cpukit/score/src/objectclearname.c
index 56898deb30..3d48ac039f 100644
--- a/cpukit/score/src/objectclearname.c
+++ b/cpukit/score/src/objectclearname.c
@@ -34,12 +34,12 @@
void _Objects_Clear_name(
void *name,
- unsigned32 length
+ uint32_t length
)
{
- unsigned32 index;
- unsigned32 maximum = length / OBJECTS_NAME_ALIGNMENT;
- unsigned32 *name_ptr = (unsigned32 *) name;
+ uint32_t index;
+ uint32_t maximum = length / OBJECTS_NAME_ALIGNMENT;
+ uint32_t *name_ptr = (uint32_t *) name;
for ( index=0 ; index < maximum ; index++ )
*name_ptr++ = 0;