diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-07-16 20:48:40 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-07-16 20:48:40 (GMT) |
commit | c97fddc786356a1832e6cb3ac3f28b781d01584d (patch) | |
tree | e9ea99bbf3387f45b18d3b6503597a1c63662cab /test/tid.c | |
parent | cb516077680041aecc338936d1aa3f84347e0e0d (diff) | |
download | hdf5-c97fddc786356a1832e6cb3ac3f28b781d01584d.zip hdf5-c97fddc786356a1832e6cb3ac3f28b781d01584d.tar.gz hdf5-c97fddc786356a1832e6cb3ac3f28b781d01584d.tar.bz2 |
[svn-r8892] Purpose:
Code cleanup
Description:
Clean up a bunch of warnings and bring new code better inline with current
library coding practice.
Platforms tested:
FreeBSD 4.10 (sleipnir) w/parallel
Too minor to require h5committest
Misc. update:
Diffstat (limited to 'test/tid.c')
-rw-r--r-- | test/tid.c | 12 |
1 files changed, 5 insertions, 7 deletions
@@ -7,7 +7,7 @@ #include "H5Ipkg.h" /* Test basic functionality of registering and deleting types and IDs */ -int id_test() +static int id_test(void) { H5I_type_t myType = H5I_BADID; hid_t arrayID = H5I_INVALID_HID; @@ -183,16 +183,14 @@ out: /* A dummy search function for the next test */ -int test_search_func(void * ptr1, void * ptr2); -int test_search_func(void * ptr1, void * ptr2) { return 0; } +static int test_search_func(void UNUSED * ptr1, void UNUSED * ptr2) { return 0; } /* Ensure that public functions cannot access "predefined" ID types */ -int id_predefined_test() +static int id_predefined_test(void ) { void * testObj; hid_t testID; hid_t typeID = H5I_INVALID_HID; - int testInt; void * testPtr; herr_t testErr; @@ -289,7 +287,7 @@ out: /* destroy it, this test will mysteriously fail (because it will expect there to */ /* be one more "free" type ID than there is). */ /* H5I_NTYPES is defined in h5public.h, MAX_NUM_TYPES is defined in h5pkg.h */ -int test_id_type_list() +static int test_id_type_list(void) { H5I_type_t startType; /* The first type ID we were assigned in this test */ H5I_type_t currentType; @@ -358,7 +356,7 @@ out: return -1; } -void test_ids() +void test_ids(void) { id_test(); id_predefined_test(); |