diff options
author | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 2000-02-17 16:12:22 (GMT) |
---|---|---|
committer | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 2000-02-17 16:12:22 (GMT) |
commit | 669f39344f4af84741ef816cb69714d7f6fc8bc1 (patch) | |
tree | e954fe7529afd5582f9dd0a30048e696cdd54bad | |
parent | 3780223f33c7a61fee084cd0db3adc1ab671f90c (diff) | |
download | hdf5-669f39344f4af84741ef816cb69714d7f6fc8bc1.zip hdf5-669f39344f4af84741ef816cb69714d7f6fc8bc1.tar.gz hdf5-669f39344f4af84741ef816cb69714d7f6fc8bc1.tar.bz2 |
[svn-r1971] removed a newline from a string after the enum type is printed
-rw-r--r-- | tools/h5dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/h5dump.c b/tools/h5dump.c index 4bb3bcd..f493e69 100644 --- a/tools/h5dump.c +++ b/tools/h5dump.c @@ -331,7 +331,7 @@ H5G_stat_t statbuf; print_enum(type); printf("\n"); indentation (indent + COL); - printf("}\n"); + printf("}"); break; default: printf( "unknown data type"); |