diff options
author | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-07-19 18:04:24 (GMT) |
---|---|---|
committer | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-07-19 18:04:24 (GMT) |
commit | dc83f3f316dc4b28b5444db0e66bc306f8cd262c (patch) | |
tree | 666ffbf50bb0171b598fe475540fd625812b70af /tools | |
parent | fe79dac33bf2553ff462cea0a2477ba719c9f08f (diff) | |
download | hdf5-dc83f3f316dc4b28b5444db0e66bc306f8cd262c.zip hdf5-dc83f3f316dc4b28b5444db0e66bc306f8cd262c.tar.gz hdf5-dc83f3f316dc4b28b5444db0e66bc306f8cd262c.tar.bz2 |
[svn-r1512] moved the array before the string in the struct for tstr.h5
Diffstat (limited to 'tools')
-rw-r--r-- | tools/h5dumptst.c | 2 |
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]; |