From 3081576124b82b2051f730a0e3575e5041e71d82 Mon Sep 17 00:00:00 2001 From: Yossi Itigin Date: Sun, 24 Sep 2017 19:19:44 +0300 Subject: [PATCH] spml_ucx: fix typo in shmem_quiet() error message. Signed-off-by: Yossi Itigin --- oshmem/mca/spml/ucx/spml_ucx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oshmem/mca/spml/ucx/spml_ucx.c b/oshmem/mca/spml/ucx/spml_ucx.c index c371b56c6f..20d55d79d1 100644 --- a/oshmem/mca/spml/ucx/spml_ucx.c +++ b/oshmem/mca/spml/ucx/spml_ucx.c @@ -613,7 +613,7 @@ int mca_spml_ucx_quiet(void) err = ucp_worker_flush(mca_spml_ucx.ucp_worker); if (UCS_OK != err) { - SPML_ERROR("fence failed: %s", ucs_status_string(err)); + SPML_ERROR("quiet failed: %s", ucs_status_string(err)); oshmem_shmem_abort(-1); return OSHMEM_ERROR; }