We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ac579a commit e5cde51Copy full SHA for e5cde51
1 file changed
Svc/FrameAccumulator/FrameDetector/FprimeFrameDetector.cpp
@@ -93,7 +93,7 @@ FrameDetector::Status FprimeFrameDetector::detect(const Types::CircularBuffer& d
93
// Compute CRC over the transmitted data (header + body)
94
FwSizeType hash_field_size = header.get_lengthField() + FprimeProtocol::FrameHeader::SERIALIZED_SIZE;
95
hash.init();
96
- for (U32 i = 0; i < hash_field_size; i++) {
+ for (FwSizeType i = 0; i < hash_field_size; i++) {
97
U8 byte = 0;
98
status = data.peek(byte, i);
99
FW_ASSERT(status == Fw::FW_SERIALIZE_OK, status);
0 commit comments