Skip to content

Commit 7aa5079

Browse files
committed
Core: fix minor warnings about missing parameters of variadic macros
1 parent 5bda14a commit 7aa5079

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/core/configurator/configurator.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ ipx_configurator::run(ipx_controller *ctrl)
585585
struct ipx_cpipe_req req;
586586
if (ipx_cpipe_receive(&req) != IPX_OK) {
587587
// This is really bad -> we cannot even safely terminate the collector
588-
IPX_ERROR(comp_str, "Configuration pipe is broken. Terminating...");
588+
IPX_ERROR(comp_str, "Configuration pipe is broken. Terminating...", '\0');
589589
abort();
590590
}
591591

src/core/configurator/extensions.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ ipx_cfg_extensions::list_extensions()
223223
}
224224

225225
if (m_extensions.empty()) {
226-
IPX_DEBUG(comp_str, "No Data Record extensions!");
226+
IPX_DEBUG(comp_str, "No Data Record extensions!", '\0');
227227
return;
228228
}
229229

0 commit comments

Comments
 (0)