From eb0b572c78cec7362b0de6ec320d1ffc0ee937b7 Mon Sep 17 00:00:00 2001 From: bmribler <39579120+bmribler@users.noreply.github.com> Date: Wed, 23 Dec 2020 18:47:35 -0500 Subject: [PATCH] Fixed typo in an error message. (#227) --- src/H5O.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/H5O.c b/src/H5O.c index 2adc27cc1b5..eab3f1c57c6 100644 --- a/src/H5O.c +++ b/src/H5O.c @@ -3346,7 +3346,7 @@ H5O_dec_rc(H5O_t *oh) /* check args */ if (!oh) - HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no name") + HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid object header") /* Decrement reference count */ oh->rc--;