diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2013-11-30 06:37:44 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2013-11-30 06:37:44 (GMT) |
commit | 92d40e82f16f5f0411e7320f524ac17eb2d13db5 (patch) | |
tree | 88f60a13e94bffea238535639f1796bbe3491e7b /src/H5Osdspace.c | |
parent | c80d8cbe61e3b36a727a8b4150ef8966292ae9c3 (diff) | |
download | hdf5-92d40e82f16f5f0411e7320f524ac17eb2d13db5.zip hdf5-92d40e82f16f5f0411e7320f524ac17eb2d13db5.tar.gz hdf5-92d40e82f16f5f0411e7320f524ac17eb2d13db5.tar.bz2 |
[svn-r24477] Description:
Bring r24476 from trunk to 1.8 branch:
Remove duplicate "intent" flags from top & shared file structures, leaving
them only in the shared file structure.
Tested on:
Mac OSX/64 10.9.0 (amazon) w/gcc 4.8, both parallel & serial
(too minor to require h5committest)
Diffstat (limited to 'src/H5Osdspace.c')
-rw-r--r-- | src/H5Osdspace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Osdspace.c b/src/H5Osdspace.c index 905c4e9..9ca8436 100644 --- a/src/H5Osdspace.c +++ b/src/H5Osdspace.c @@ -526,7 +526,7 @@ H5O_sdspace_debug(H5F_t UNUSED *f, hid_t UNUSED dxpl_id, const void *mesg, HDfprintf (stream, "{"); for(u = 0; u < sdim->rank; u++) { if(H5S_UNLIMITED==sdim->max[u]) - HDfprintf (stream, "%sINF", u?", ":""); + HDfprintf (stream, "%sUNLIM", u?", ":""); else HDfprintf (stream, "%s%Hu", u?", ":"", sdim->max[u]); } /* end for */ |