score: Fix statement with no effect warning

No need to add an assert due to the fatal error parameter passed to
_Objects_MP_Allocate_and_open().
This commit is contained in:
Sebastian Huber
2016-03-30 08:31:26 +02:00
parent 8afeb993f8
commit 9f714333ce

View File

@@ -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 */
}
/*