fix compile

This commit is contained in:
Eric House 2021-03-19 17:25:51 -07:00
parent e86626d7be
commit 87621c3b51

View file

@ -2522,7 +2522,11 @@ comms_checkIncomingStream( CommsCtxt* comms, XWEnv xwe, XWStreamCtxt* stream,
noteHBReceived( comms/* , addr */ );
}
#ifdef COMMS_CHECKSUM
LOG_RETURNF( "%s (len: %d; sum: %s)", boolToStr(messageValid), state->len, state->sum );
#else
LOG_RETURNF( "%s (len: %d)", boolToStr(messageValid), state->len );
#endif
return messageValid;
} /* comms_checkIncomingStream */