score: Fix set but not used warning

This commit is contained in:
Sebastian Huber
2016-03-30 08:34:23 +02:00
parent 863c07479c
commit 06f68a96b1

View File

@@ -113,7 +113,6 @@ void _Signal_MP_Process_packet (
)
{
Signal_MP_Packet *the_packet;
Thread_Control *the_thread;
the_packet = (Signal_MP_Packet *) the_packet_prefix;
@@ -134,8 +133,7 @@ void _Signal_MP_Process_packet (
case SIGNAL_MP_SEND_RESPONSE:
the_thread = _MPCI_Process_response( the_packet_prefix );
_MPCI_Process_response( the_packet_prefix );
_MPCI_Return_packet( the_packet_prefix );
break;