diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2017-05-25 13:24:24 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2017-05-25 13:24:24 (GMT) |
commit | a33859d6774f73c0bb31386eedfde2aaf222427b (patch) | |
tree | 2abfac1c29252407940350c72fd581d5f9d1adc7 /hl/tools/h5watch/h5watchgentest.c | |
parent | 65e2e8f87cc9b5235b19faefa23f76c2c6ea6da9 (diff) | |
download | hdf5-a33859d6774f73c0bb31386eedfde2aaf222427b.zip hdf5-a33859d6774f73c0bb31386eedfde2aaf222427b.tar.gz hdf5-a33859d6774f73c0bb31386eedfde2aaf222427b.tar.bz2 |
Minor type fixes to h5watch.
Diffstat (limited to 'hl/tools/h5watch/h5watchgentest.c')
-rw-r--r-- | hl/tools/h5watch/h5watchgentest.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/hl/tools/h5watch/h5watchgentest.c b/hl/tools/h5watch/h5watchgentest.c index c5b76de..18e15fc 100644 --- a/hl/tools/h5watch/h5watchgentest.c +++ b/hl/tools/h5watch/h5watchgentest.c @@ -58,24 +58,24 @@ /* Data structures for datasets with compound types */ typedef struct sub22_t { - unsigned int a; - unsigned int b; - unsigned int c; + int a; + int b; + int c; } sub22_t; typedef struct sub2_t { - unsigned int a; + int a; sub22_t b; - unsigned int c; + int c; } sub2_t; typedef struct sub4_t { - unsigned int a; - unsigned int b; + int a; + int b; } sub4_t; typedef struct set_t { - unsigned int field1; + int field1; sub2_t field2; double field3; sub4_t field4; |