diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-06-13 20:32:15 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-06-13 20:32:15 (GMT) |
commit | 1b2d904890f6b1852ea97e120765abf352e9f8fa (patch) | |
tree | 0a7cf793ab9eb08546e5a8603fc8c2c94e1efb05 /src/H5Ofill.c | |
parent | 4196708248538053699e3bf13ac2a216032039a4 (diff) | |
download | hdf5-1b2d904890f6b1852ea97e120765abf352e9f8fa.zip hdf5-1b2d904890f6b1852ea97e120765abf352e9f8fa.tar.gz hdf5-1b2d904890f6b1852ea97e120765abf352e9f8fa.tar.bz2 |
[svn-r7036] Purpose:
Code cleanup
Description:
Add new H5D_FILL_TIME_IFSET value to debugging output.
Platforms tested:
FreeBSD 4.8 (sleipnir)
h5committest
Diffstat (limited to 'src/H5Ofill.c')
-rw-r--r-- | src/H5Ofill.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/H5Ofill.c b/src/H5Ofill.c index 8fbe390..95d098e 100644 --- a/src/H5Ofill.c +++ b/src/H5Ofill.c @@ -724,6 +724,10 @@ H5O_fill_new_debug(H5F_t UNUSED *f, hid_t UNUSED dxpl_id, const void *_mesg, FIL fprintf(stream,"Never\n"); break; + case H5D_FILL_TIME_IFSET: + fprintf(stream,"If Set\n"); + break; + default: fprintf(stream,"Unknown!\n"); break; |