Skip to content

Commit 17d5c54

Browse files
committed
Fixes to the SyncSuffixLayer.
1 parent 07ad4fc commit 17d5c54

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

include/comms/frame/SyncSuffixLayer.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ class SyncSuffixLayer : public comms::frame::details::SyncSuffixLayerBase<TField
512512
return es;
513513
}
514514

515-
auto esTmp = thisObj.writeField(&msg, field, iter, fieldLen);
515+
auto esTmp = thisObj.doWriteField(&msg, field, iter, fieldLen);
516516
static_cast<void>(esTmp);
517517
COMMS_ASSERT(esTmp == comms::ErrorStatus::Success);
518518
return comms::ErrorStatus::UpdateRequired;
@@ -569,7 +569,7 @@ class SyncSuffixLayer : public comms::frame::details::SyncSuffixLayerBase<TField
569569
}
570570

571571
thisObj.prepareFieldForWrite(checksum, msgPtr, field);
572-
return thisObj.writeField(msgPtr, field, to, remSize);
572+
return thisObj.doWriteField(msgPtr, field, to, remSize);
573573
}
574574

575575
template <typename TIter>

0 commit comments

Comments
 (0)