diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2015-09-27 02:57:02 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2015-09-27 02:57:02 (GMT) |
commit | 0704819592498a9bcfffdeb367821a9d18888cf5 (patch) | |
tree | b0e23063f0f2ca89b3b2d5ad8fb82e2316ab7150 | |
parent | f45d7b4b7a784997c98c2b0ed0da2ab4575fe340 (diff) | |
download | hdf5-0704819592498a9bcfffdeb367821a9d18888cf5.zip hdf5-0704819592498a9bcfffdeb367821a9d18888cf5.tar.gz hdf5-0704819592498a9bcfffdeb367821a9d18888cf5.tar.bz2 |
[svn-r27890] Description:
Remove 'unused' attribute from decoding pointer flag that I missed in the
last checkin.
Tested on:
MacOSX/64 10.10.5 (amazon) w/serial & parallel
(h5committest forthcoming)
-rw-r--r-- | src/H5Snone.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Snone.c b/src/H5Snone.c index fe8829f..77f8af7 100644 --- a/src/H5Snone.c +++ b/src/H5Snone.c @@ -527,7 +527,7 @@ H5S_none_serialize(const H5S_t *space, uint8_t **p) REVISION LOG --------------------------------------------------------------------------*/ static herr_t -H5S_none_deserialize(H5S_t *space, const uint8_t H5_ATTR_UNUSED **p) +H5S_none_deserialize(H5S_t *space, const uint8_t **p) { herr_t ret_value = SUCCEED; /* return value */ |