Skip to content

Commit

Permalink
Fix -Wnon-pod-varargs
Browse files Browse the repository at this point in the history
Signed-off-by: Yadunund <[email protected]>
  • Loading branch information
Yadunund committed Nov 4, 2024
1 parent 082e64c commit 0630d06
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rmw_zenoh_cpp/src/detail/rmw_client_data.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ std::shared_ptr<ClientData> ClientData::make(
RMW_ZENOH_LOG_ERROR_NAMED(
"rmw_zenoh_cpp",
"Unable to generate keyexpr for liveliness token for the client %s.",
service_name);
service_name.c_str());
return nullptr;
}

Expand Down
2 changes: 1 addition & 1 deletion rmw_zenoh_cpp/src/detail/rmw_service_data.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ std::shared_ptr<ServiceData> ServiceData::make(
RMW_ZENOH_LOG_ERROR_NAMED(
"rmw_zenoh_cpp",
"Unable to generate keyexpr for liveliness token for the service %s.",
service_name);
service_name.c_str());
return nullptr;
}

Expand Down

0 comments on commit 0630d06

Please sign in to comment.