summaryrefslogtreecommitdiffstats
path: root/src/H5Olayout.c
diff options
context:
space:
mode:
authorSongyu Lu <songyulu@hdfgroup.org>2018-11-15 21:05:23 (GMT)
committerSongyu Lu <songyulu@hdfgroup.org>2018-11-15 21:05:23 (GMT)
commit198bc059b0d91aa804efe859f0a8961e3ee0cf8f (patch)
treee148426cdc0f2596f777dd77ecdb7a39dd64345e /src/H5Olayout.c
parentc132cb5565de02fd4e1e2cfe8ea7b89b21f785ac (diff)
downloadhdf5-198bc059b0d91aa804efe859f0a8961e3ee0cf8f.zip
hdf5-198bc059b0d91aa804efe859f0a8961e3ee0cf8f.tar.gz
hdf5-198bc059b0d91aa804efe859f0a8961e3ee0cf8f.tar.bz2
HDFFV-10571: Minor change - reformatting the error check.
Diffstat (limited to 'src/H5Olayout.c')
-rw-r--r--src/H5Olayout.c3
1 files changed, 2 insertions, 1 deletions
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 */