summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Lu <ptlu@hawkwind.ncsa.uiuc.edu>1999-07-19 18:04:24 (GMT)
committerPatrick Lu <ptlu@hawkwind.ncsa.uiuc.edu>1999-07-19 18:04:24 (GMT)
commitdc83f3f316dc4b28b5444db0e66bc306f8cd262c (patch)
tree666ffbf50bb0171b598fe475540fd625812b70af
parentfe79dac33bf2553ff462cea0a2477ba719c9f08f (diff)
downloadhdf5-dc83f3f316dc4b28b5444db0e66bc306f8cd262c.zip
hdf5-dc83f3f316dc4b28b5444db0e66bc306f8cd262c.tar.gz
hdf5-dc83f3f316dc4b28b5444db0e66bc306f8cd262c.tar.bz2
[svn-r1512] moved the array before the string in the struct for tstr.h5
-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];