diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2013-01-22 20:43:12 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2013-01-22 20:43:12 (GMT) |
commit | ff421d9424233c92547e2bb649324983bf86c9dd (patch) | |
tree | d2a6cc9b0f35f5a29fc59feba2a7f937c0cf91e8 /tools/h5ls | |
parent | 0b107827ece1f60ad92ee2e4799fdb4f9111faf0 (diff) | |
download | hdf5-ff421d9424233c92547e2bb649324983bf86c9dd.zip hdf5-ff421d9424233c92547e2bb649324983bf86c9dd.tar.gz hdf5-ff421d9424233c92547e2bb649324983bf86c9dd.tar.bz2 |
[svn-r23190] HDFFV-8285: Add suppress ddl option.
Tested: local linux
Diffstat (limited to 'tools/h5ls')
-rw-r--r-- | tools/h5ls/h5ls.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/h5ls/h5ls.c b/tools/h5ls/h5ls.c index 0fc0531..2266480 100644 --- a/tools/h5ls/h5ls.c +++ b/tools/h5ls/h5ls.c @@ -1453,7 +1453,7 @@ dump_dataset_values(hid_t dset) h5tools_str_close(&buffer); - HDfprintf(rawoutstream, "\n"); + PRINTVALSTREAM(rawoutstream, "\n"); } @@ -1637,7 +1637,7 @@ list_attr(hid_t obj, const char *attr_name, const H5A_info_t UNUSED *ainfo, } h5tools_str_close(&buffer); - HDfprintf(rawoutstream, "\n"); + PRINTVALSTREAM(rawoutstream, "\n"); return 0; } @@ -2263,7 +2263,7 @@ list_lnk(const char *name, const H5L_info_t *linfo, void *_iter) grp_literal_g = orig_grp_literal; } else - HDfprintf(rawoutstream, "\n"); + PRINTVALSTREAM(rawoutstream, "\n"); } break; @@ -2749,7 +2749,7 @@ main(int argc, const char *argv[]) if(file >= 0) { if(verbose_g) - HDfprintf(rawoutstream, "Opened \"%s\" with %s driver.\n", fname, drivername); + PRINTSTREAM(rawoutstream, "Opened \"%s\" with %s driver.\n", fname, drivername); break; /*success*/ } /* end if */ |