diff --git a/source/lib/core/config.cpp b/source/lib/core/config.cpp index 44cfc7d8..8d1ad619 100644 --- a/source/lib/core/config.cpp +++ b/source/lib/core/config.cpp @@ -121,7 +121,7 @@ using utility::parse_numeric_range; [&]() { \ auto _ret = _config->insert( \ ENV_NAME, get_setting_name(ENV_NAME), DESCRIPTION, TYPE{ INITIAL_VALUE }, \ - std::set{ "custom", "omnitrace", "librocprof-sys", \ + std::set{ "custom", "omnitrace", "librocprof-sys", \ __VA_ARGS__ }); \ if(!_ret.second) \ { \ @@ -151,7 +151,8 @@ using utility::parse_numeric_range; [&]() { \ auto _ret = _config->insert( \ ENV_NAME, get_setting_name(ENV_NAME), DESCRIPTION, TYPE{ INITIAL_VALUE }, \ - std::set{ "custom", "omnitrace", "librocprof-sys", __VA_ARGS__ }, \ + std::set{ "custom", "omnitrace", "librocprof-sys", \ + __VA_ARGS__ }, \ std::vector{ CMD_LINE }); \ if(!_ret.second) \ { \ diff --git a/source/lib/omnitrace-dl/dl.cpp b/source/lib/omnitrace-dl/dl.cpp index 8844343a..c285120d 100644 --- a/source/lib/omnitrace-dl/dl.cpp +++ b/source/lib/omnitrace-dl/dl.cpp @@ -1086,11 +1086,12 @@ extern "C" #if OMNITRACE_USE_ROCPROFILER > 0 void OnLoadToolProp(void* settings) { - OMNITRACE_DL_LOG(-16, - "invoking %s(rocprofiler_settings_t*) within librocprof-sys-dl.so " - "will cause a silent failure for rocprofiler. ROCP_TOOL_LIB " - "should be set to librocprof-sys.so\n", - __FUNCTION__); + OMNITRACE_DL_LOG( + -16, + "invoking %s(rocprofiler_settings_t*) within librocprof-sys-dl.so " + "will cause a silent failure for rocprofiler. ROCP_TOOL_LIB " + "should be set to librocprof-sys.so\n", + __FUNCTION__); abort(); return OMNITRACE_DL_INVOKE(get_indirect().rocp_on_load_tool_prop_f, settings); }