Skip to content

Commit

Permalink
Core: fix minor warnings about missing parameters of variadic macros
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukas955 committed Apr 23, 2020
1 parent 5bda14a commit 7aa5079
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/core/configurator/configurator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@ ipx_configurator::run(ipx_controller *ctrl)
struct ipx_cpipe_req req;
if (ipx_cpipe_receive(&req) != IPX_OK) {
// This is really bad -> we cannot even safely terminate the collector
IPX_ERROR(comp_str, "Configuration pipe is broken. Terminating...");
IPX_ERROR(comp_str, "Configuration pipe is broken. Terminating...", '\0');
abort();
}

Expand Down
2 changes: 1 addition & 1 deletion src/core/configurator/extensions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ ipx_cfg_extensions::list_extensions()
}

if (m_extensions.empty()) {
IPX_DEBUG(comp_str, "No Data Record extensions!");
IPX_DEBUG(comp_str, "No Data Record extensions!", '\0');
return;
}

Expand Down

0 comments on commit 7aa5079

Please sign in to comment.