Skip to content

Commit

Permalink
make linters happy
Browse files Browse the repository at this point in the history
Signed-off-by: Alejandro Hernández Cordero <[email protected]>
  • Loading branch information
ahcorde committed Oct 4, 2024
1 parent e4268f3 commit ac83520
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rmw_zenoh_cpp/src/detail/liveliness_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ void Entity::get_gid(uint8_t gid[RMW_GID_STORAGE_SIZE]) const
{
std::vector<uint8_t> guid_bytes(sizeof(this->guid_));
memcpy(guid_bytes.data(), &this->guid_, sizeof(this->guid_));
for(size_t i = 0; i < guid_bytes.size(); ++i) {
for (size_t i = 0; i < guid_bytes.size(); ++i) {
gid[i] = guid_bytes[i];
}
}
Expand Down

0 comments on commit ac83520

Please sign in to comment.