diff --git a/cpukit/rtems/src/regionmp.c b/cpukit/rtems/src/regionmp.c index 63d4d84031..bd4e04fcf6 100644 --- a/cpukit/rtems/src/regionmp.c +++ b/cpukit/rtems/src/regionmp.c @@ -166,7 +166,6 @@ void _Region_MP_Process_packet ( { Region_MP_Packet *the_packet; Thread_Control *the_thread; - bool ignored; the_packet = (Region_MP_Packet *) the_packet_prefix; @@ -174,12 +173,12 @@ void _Region_MP_Process_packet ( case REGION_MP_ANNOUNCE_CREATE: - ignored = _Objects_MP_Allocate_and_open( - &_Region_Information, - the_packet->name, - the_packet->Prefix.id, - true - ); + _Objects_MP_Allocate_and_open( + &_Region_Information, + the_packet->name, + the_packet->Prefix.id, + true + ); _MPCI_Return_packet( the_packet_prefix ); break; @@ -249,8 +248,6 @@ void _Region_MP_Process_packet ( break; } - - ignored; /* avoid set but not used warning */ } /*