Removed warning per Chris Johns' suggestion.

This commit is contained in:
Joel Sherrill
1998-01-20 20:32:15 +00:00
parent fbaf52eb26
commit 6ab91d9724
6 changed files with 6 additions and 6 deletions

View File

@@ -236,7 +236,7 @@ RTEMS_INLINE_ROUTINE void _Objects_Close(
unsigned32 index; unsigned32 index;
index = _Objects_Get_index( the_object->id ); index = _Objects_Get_index( the_object->id );
information->local_table[ index ] = NULL; information->local_table[ index ] = (Objects_Control *) NULL;
_Objects_Clear_name( the_object->name, information->name_length ); _Objects_Clear_name( the_object->name, information->name_length );
} }

View File

@@ -236,7 +236,7 @@ RTEMS_INLINE_ROUTINE void _Objects_Close(
unsigned32 index; unsigned32 index;
index = _Objects_Get_index( the_object->id ); index = _Objects_Get_index( the_object->id );
information->local_table[ index ] = NULL; information->local_table[ index ] = (Objects_Control *) NULL;
_Objects_Clear_name( the_object->name, information->name_length ); _Objects_Clear_name( the_object->name, information->name_length );
} }

View File

@@ -140,7 +140,7 @@
unsigned32 _index; \ unsigned32 _index; \
\ \
_index = _Objects_Get_index( (_the_object)->id ); \ _index = _Objects_Get_index( (_the_object)->id ); \
(_information)->local_table[ _index ] = NULL; \ (_information)->local_table[ _index ] = (Objects_Control *) NULL; \
_Objects_Clear_name( (_the_object)->name, (_information)->name_length ); \ _Objects_Clear_name( (_the_object)->name, (_information)->name_length ); \
} }

View File

@@ -140,7 +140,7 @@
unsigned32 _index; \ unsigned32 _index; \
\ \
_index = _Objects_Get_index( (_the_object)->id ); \ _index = _Objects_Get_index( (_the_object)->id ); \
(_information)->local_table[ _index ] = NULL; \ (_information)->local_table[ _index ] = (Objects_Control *) NULL; \
_Objects_Clear_name( (_the_object)->name, (_information)->name_length ); \ _Objects_Clear_name( (_the_object)->name, (_information)->name_length ); \
} }

View File

@@ -236,7 +236,7 @@ RTEMS_INLINE_ROUTINE void _Objects_Close(
unsigned32 index; unsigned32 index;
index = _Objects_Get_index( the_object->id ); index = _Objects_Get_index( the_object->id );
information->local_table[ index ] = NULL; information->local_table[ index ] = (Objects_Control *) NULL;
_Objects_Clear_name( the_object->name, information->name_length ); _Objects_Clear_name( the_object->name, information->name_length );
} }

View File

@@ -140,7 +140,7 @@
unsigned32 _index; \ unsigned32 _index; \
\ \
_index = _Objects_Get_index( (_the_object)->id ); \ _index = _Objects_Get_index( (_the_object)->id ); \
(_information)->local_table[ _index ] = NULL; \ (_information)->local_table[ _index ] = (Objects_Control *) NULL; \
_Objects_Clear_name( (_the_object)->name, (_information)->name_length ); \ _Objects_Clear_name( (_the_object)->name, (_information)->name_length ); \
} }