summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorPatrick Lu <ptlu@hawkwind.ncsa.uiuc.edu>1999-07-19 17:52:36 (GMT)
committerPatrick Lu <ptlu@hawkwind.ncsa.uiuc.edu>1999-07-19 17:52:36 (GMT)
commit188af9405a3f77609bb0a978e762edb1b1a6a3f4 (patch)
tree0d2908ec8ea9938299e2adf2294039482bdfa943 /tools
parent11b4b23d81550aa2ba1f494262ac54899adb4dff (diff)
downloadhdf5-188af9405a3f77609bb0a978e762edb1b1a6a3f4.zip
hdf5-188af9405a3f77609bb0a978e762edb1b1a6a3f4.tar.gz
hdf5-188af9405a3f77609bb0a978e762edb1b1a6a3f4.tar.bz2
[svn-r1510]
reordered the struct for the tstr.h5 file. now the array prints out before the string in the dumper.
Diffstat (limited to 'tools')
-rw-r--r--tools/h5dumptst.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/h5dumptst.c b/tools/h5dumptst.c
index 3bcd7a6..d11037d 100644
--- a/tools/h5dumptst.c
+++ b/tools/h5dumptst.c
@@ -1053,8 +1053,8 @@ char string4[3][20] = { "s1234567890123456789", "s1234567890123456789",
hsize_t dims5[] = { 3, 6};
typedef struct {
- char s[12][32];
int a[8][10];
+ char s[12][32];
} compound_t;
compound_t comp1[3][6];
size_t mdims[2];