Skip to content

Commit

Permalink
Additional formatting error fix
Browse files Browse the repository at this point in the history
This patch fixes additional formatting error.
  • Loading branch information
mat-kalinowski committed Sep 3, 2021
1 parent c45b5ea commit ad047e3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions connectivity/netsocket/include/netsocket/MsgHeader.h
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,10 @@ struct MsgHeaderIterator {
void *next = reinterpret_cast<void *>(reinterpret_cast<uint8_t *>(current) + current->len);

next = std::align(
alignof(nsapi_msghdr_t),
sizeof(nsapi_msghdr_t),
next,
remaining_size
alignof(nsapi_msghdr_t),
sizeof(nsapi_msghdr_t),
next,
remaining_size
);

return next;
Expand Down

0 comments on commit ad047e3

Please sign in to comment.