From 5fe64bbc84437577b7822e804e68f1325f1c8a71 Mon Sep 17 00:00:00 2001 From: Matthieu Dorier Date: Wed, 21 Jun 2023 13:52:11 +0000 Subject: [PATCH] fixed warning in macro --- include/margo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/margo.h b/include/margo.h index e4ecec7..a43daa8 100644 --- a/include/margo.h +++ b/include/margo.h @@ -1971,7 +1971,7 @@ hg_return_t _handler_for_NULL(hg_handle_t); margo_destroy(handle); \ return; \ } \ - struct margo_monitor_rpc_ult_args __monitoring_args = {0, handle}; \ + struct margo_monitor_rpc_ult_args __monitoring_args = {{0}, handle}; \ __margo_internal_pre_wrapper_hooks(__mid, handle, &__monitoring_args); \ margo_trace(__mid, "Starting RPC %s (handle = %p)", __rpc_name, \ (void*)handle); \