From bdef38cc8ba2402b2e7ae21790add282df340196 Mon Sep 17 00:00:00 2001 From: Jeff Squyres Date: Thu, 23 Nov 2023 08:06:22 -0500 Subject: [PATCH] ompi: fix typo in error message Thanks to Tony Curtis for reporting the issue. Signed-off-by: Jeff Squyres (cherry picked from commit 34cba053f856ccb57d75ff2cd8e49698ec9a96a8) --- ompi/instance/instance.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ompi/instance/instance.c b/ompi/instance/instance.c index 6d85bdec0b4..4aa521fdefb 100644 --- a/ompi/instance/instance.c +++ b/ompi/instance/instance.c @@ -6,6 +6,7 @@ * Copyright (c) 2022 The University of Tennessee and The University * of Tennessee Research Foundation. All rights * reserved. + * Copyright (c) 2023 Jeffrey M. Squyres. All rights reserved. * $COPYRIGHT$ * * Additional copyrights may follow @@ -67,7 +68,7 @@ __opal_attribute_constructor__ static void instance_lock_init(void) { OBJ_CONSTRUCT(&instance_lock, opal_recursive_mutex_t); } #else -#error "No support for recursive mutexes available on this platform. +#error "No support for recursive mutexes available on this platform." #endif /* defined(OPAL_RECURSIVE_MUTEX_STATIC_INIT) */ /** MPI_Init instance */