Index: firmware/App/Services/SystemCommMessages.c =================================================================== diff -u -r01d37b6dbd51a2c55ba9bc565e22a222f5df1017 -r23f44ccb07708bcb30cd07b249ab170163e86a2b --- firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 01d37b6dbd51a2c55ba9bc565e22a222f5df1017) +++ firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 23f44ccb07708bcb30cd07b249ab170163e86a2b) @@ -2522,13 +2522,13 @@ *************************************************************************/ void handleSetFluidLeakStateDetectorOverrideRequest( MESSAGE_T *message ) { - TEST_OVERRIDE_ARRAY_PAYLOAD_T payload; + TEST_OVERRIDE_PAYLOAD_T payload; BOOL result = FALSE; // Verify payload length - if ( sizeof( TEST_OVERRIDE_ARRAY_PAYLOAD_T ) == message->hdr.payloadLen ) + if ( sizeof( TEST_OVERRIDE_PAYLOAD_T ) == message->hdr.payloadLen ) { - memcpy( &payload, message->payload, sizeof( TEST_OVERRIDE_ARRAY_PAYLOAD_T ) ); + memcpy( &payload, message->payload, sizeof( TEST_OVERRIDE_PAYLOAD_T ) ); if ( FALSE == payload.reset ) { result = testSetFluidLeakStateOverride( ( FLUID_LEAK_STATES_T)( payload.state.u32 ) );