forked from Imagelibrary/rtems
Removed warning per Chris Johns' suggestion.
This commit is contained in:
@@ -236,7 +236,7 @@ RTEMS_INLINE_ROUTINE void _Objects_Close(
|
||||
unsigned32 index;
|
||||
|
||||
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 );
|
||||
}
|
||||
|
||||
|
||||
@@ -236,7 +236,7 @@ RTEMS_INLINE_ROUTINE void _Objects_Close(
|
||||
unsigned32 index;
|
||||
|
||||
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 );
|
||||
}
|
||||
|
||||
|
||||
@@ -140,7 +140,7 @@
|
||||
unsigned32 _index; \
|
||||
\
|
||||
_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 ); \
|
||||
}
|
||||
|
||||
|
||||
@@ -140,7 +140,7 @@
|
||||
unsigned32 _index; \
|
||||
\
|
||||
_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 ); \
|
||||
}
|
||||
|
||||
|
||||
@@ -236,7 +236,7 @@ RTEMS_INLINE_ROUTINE void _Objects_Close(
|
||||
unsigned32 index;
|
||||
|
||||
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 );
|
||||
}
|
||||
|
||||
|
||||
@@ -140,7 +140,7 @@
|
||||
unsigned32 _index; \
|
||||
\
|
||||
_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 ); \
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user