summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2000-05-11 22:21:35 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2000-05-11 22:21:35 (GMT)
commit2d83c652d502c543d16a644bf112e98ba5e2ed5f (patch)
tree382115baff55c9180c7139e8df1429d713f33fac /tools
parentbcfdc623e01cf0a44d5ef7b16524fec8f5be76ae (diff)
downloadhdf5-2d83c652d502c543d16a644bf112e98ba5e2ed5f.zip
hdf5-2d83c652d502c543d16a644bf112e98ba5e2ed5f.tar.gz
hdf5-2d83c652d502c543d16a644bf112e98ba5e2ed5f.tar.bz2
[svn-r2244] Put in the missing ';' for H5T_OPAQUE printing.
Diffstat (limited to 'tools')
-rw-r--r--tools/h5dump.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/h5dump.c b/tools/h5dump.c
index efbbf11..179bb74 100644
--- a/tools/h5dump.c
+++ b/tools/h5dump.c
@@ -433,9 +433,9 @@ H5G_stat_t statbuf;
case H5T_OPAQUE:
printf( "\n");
indentation (indent+COL);
- printf("H5T_OPAQUE\n");
+ printf("H5T_OPAQUE;\n");
indentation (indent+COL);
- printf("OPAQUE_TAG \"%s\"\n", H5Tget_tag(type));
+ printf("OPAQUE_TAG \"%s\";\n", H5Tget_tag(type));
indentation (indent);
break;