diff options
author | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 2000-05-09 17:00:38 (GMT) |
---|---|---|
committer | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 2000-05-09 17:00:38 (GMT) |
commit | f474a093652aad41482db7ed2ddb346aaad0372d (patch) | |
tree | 1735e9338ec775e00acc74c213c70d07bd234508 /tools | |
parent | c254ae1fe5b459b30c0781c8bbd30c86a757242b (diff) | |
download | hdf5-f474a093652aad41482db7ed2ddb346aaad0372d.zip hdf5-f474a093652aad41482db7ed2ddb346aaad0372d.tar.gz hdf5-f474a093652aad41482db7ed2ddb346aaad0372d.tar.bz2 |
[svn-r2228] added a semicolon after the opaque info is printed
Diffstat (limited to 'tools')
-rw-r--r-- | tools/h5dump.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/h5dump.c b/tools/h5dump.c index 359be5e..8d01d45 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; |