diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2002-02-17 02:51:21 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2002-02-17 02:51:21 (GMT) |
commit | b8dbd390db9b47e73c6120ba61724b1e20ab333d (patch) | |
tree | 1fbcef76bf2cc480c2a57e5e26b599f82d85bc7c /test/titerate.c | |
parent | 855aa23823a1091262524773626de3d920838e72 (diff) | |
download | hdf5-b8dbd390db9b47e73c6120ba61724b1e20ab333d.zip hdf5-b8dbd390db9b47e73c6120ba61724b1e20ab333d.tar.gz hdf5-b8dbd390db9b47e73c6120ba61724b1e20ab333d.tar.bz2 |
[svn-r4978] Purpose:
Code cleanup
Description:
Cleanup compiler warnings found by the SGI compiler and gcc 3.0
Platforms tested:
FreeBSD 4.5 w/gcc 3.0 (hack) && IRIX64 (modi4)
Diffstat (limited to 'test/titerate.c')
-rw-r--r-- | test/titerate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/titerate.c b/test/titerate.c index b50913d..50c26ee 100644 --- a/test/titerate.c +++ b/test/titerate.c @@ -70,7 +70,7 @@ herr_t aiter_cb(hid_t loc_id, const char *name, void *op_data); ****************************************************************/ int iter_strcmp(const void *s1, const void *s2) { - return(strcmp(*(const char **)s1,*(const char **)s2)); + return(strcmp(*(const char * const *)s1,*(const char * const *)s2)); } /**************************************************************** |