diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-06-23 17:57:16 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-06-23 17:57:16 (GMT) |
commit | 09ee6ebc4ca6284aef70d87a4abd6bd6d43f54f7 (patch) | |
tree | bb60773615fc7926781e7f6d1428a59fa0c7e612 /tools/h5dump | |
parent | d6bb759cbdaa4ef5326cdb4e43a9ca815ccb9710 (diff) | |
download | hdf5-09ee6ebc4ca6284aef70d87a4abd6bd6d43f54f7.zip hdf5-09ee6ebc4ca6284aef70d87a4abd6bd6d43f54f7.tar.gz hdf5-09ee6ebc4ca6284aef70d87a4abd6bd6d43f54f7.tar.bz2 |
[svn-r8733] Purpose:
Code cleanup
Description:
Reduce compiler warnings on SGI IRIX
Platforms tested:
FreeBSD 4.10 (sleipnir)
SGI IRIX6 (Cheryl's machine)
Too minor to require full h5committest
Diffstat (limited to 'tools/h5dump')
-rw-r--r-- | tools/h5dump/h5dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/h5dump/h5dump.c b/tools/h5dump/h5dump.c index f608c45..3cbef84 100644 --- a/tools/h5dump/h5dump.c +++ b/tools/h5dump/h5dump.c @@ -2419,7 +2419,7 @@ dump_fcpl(hid_t fid) indentation(indent + COL); printf("%s %d\n","OBJECTHEADER_VERSION", shhdr); indentation(indent + COL); - printf("%s %d\n","USERBLOCK_VERSION", userblock); + HDfprintf(stdout,"%s %Hu\n","USERBLOCK_VERSION", userblock); indentation(indent + COL); printf("%s %d\n","OFFSET_SIZE", off_size); indentation(indent + COL); |