diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-05-07 19:37:48 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-05-07 19:37:48 (GMT) |
commit | bbe03d73613afbcdeca14c045c8b90fac37e0fe8 (patch) | |
tree | 6c6468ecf923ad7f1101e0719d2af1894e63ad64 /hl/test/test_packet.c | |
parent | c952661afbac41d4bf2622899bf2a4c2c02b07b5 (diff) | |
download | hdf5-bbe03d73613afbcdeca14c045c8b90fac37e0fe8.zip hdf5-bbe03d73613afbcdeca14c045c8b90fac37e0fe8.tar.gz hdf5-bbe03d73613afbcdeca14c045c8b90fac37e0fe8.tar.bz2 |
[svn-r10736] Purpose:
Code cleanup
Description:
Clean up some compiler warnings
Platforms tested:
FreeBSD 4.11 (sleipnir)
h5committest
Diffstat (limited to 'hl/test/test_packet.c')
-rw-r--r-- | hl/test/test_packet.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/hl/test/test_packet.c b/hl/test/test_packet.c index 0500edd..0593579 100644 --- a/hl/test/test_packet.c +++ b/hl/test/test_packet.c @@ -82,7 +82,8 @@ static int cmp_par(hsize_t i, hsize_t j, particle_t *rbuf, particle_t *wbuf ) * function to create a datatype representing the particle struct *------------------------------------------------------------------------- */ -static hid_t make_particle_type() +static hid_t +make_particle_type(void) { hid_t type_id; hid_t string_type; @@ -113,8 +114,6 @@ static hid_t make_particle_type() /* Create a normal HL table just like the HL examples do */ static int create_hl_table(hid_t fid) { - particle_t testparticle; - /* Calculate the offsets of the particle struct members in memory */ size_t part_offset[NFIELDS] = { HOFFSET( particle_t, name ), HOFFSET( particle_t, lati ), @@ -122,12 +121,6 @@ static int create_hl_table(hid_t fid) HOFFSET( particle_t, pressure ), HOFFSET( particle_t, temperature )}; - size_t part_sizes[NFIELDS] = { sizeof( testparticle.name), - sizeof( testparticle.lati), - sizeof( testparticle.longi), - sizeof( testparticle.pressure), - sizeof( testparticle.temperature)}; - /* Define field information */ const char *field_names[NFIELDS] = { "Name","Latitude", "Longitude", "Pressure", "Temperature" }; |