From 198bc059b0d91aa804efe859f0a8961e3ee0cf8f Mon Sep 17 00:00:00 2001 From: Songyu Lu Date: Thu, 15 Nov 2018 15:05:23 -0600 Subject: HDFFV-10571: Minor change - reformatting the error check. --- src/H5Olayout.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/H5Olayout.c b/src/H5Olayout.c index 11d5d1c..b720f93 100644 --- a/src/H5Olayout.c +++ b/src/H5Olayout.c @@ -248,7 +248,8 @@ H5O__layout_decode(H5F_t *f, H5O_t H5_ATTR_UNUSED *open_oh, /* Just in case that something goes very wrong, such as file corruption. */ if(mesg->u.chunk.dim[u] == 0) - HGOTO_ERROR(H5E_DATASET, H5E_BADVALUE, NULL, "chunk dimension must be positive: mesg->u.chunk.dim[%u] = %u", u, mesg->u.chunk.dim[u]) + HGOTO_ERROR(H5E_DATASET, H5E_BADVALUE, NULL, "chunk dimension must be positive: mesg->u.chunk.dim[%u] = %u", + u, mesg->u.chunk.dim[u]) } /* Compute chunk size */ -- cgit v0.12