diff options
author | Songyu Lu <songyulu@hdfgroup.org> | 2018-11-15 21:05:23 (GMT) |
---|---|---|
committer | Songyu Lu <songyulu@hdfgroup.org> | 2018-11-15 21:05:23 (GMT) |
commit | 198bc059b0d91aa804efe859f0a8961e3ee0cf8f (patch) | |
tree | e148426cdc0f2596f777dd77ecdb7a39dd64345e /src/H5Olayout.c | |
parent | c132cb5565de02fd4e1e2cfe8ea7b89b21f785ac (diff) | |
download | hdf5-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.c | 3 |
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 */ |