diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2000-09-19 21:08:15 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2000-09-19 21:08:15 (GMT) |
commit | 22867dca0e1123aef450b3feae34661cefb64a91 (patch) | |
tree | 879369bd3df77b6e8c7834f7a3d9980236116e8d /src/H5FDlog.c | |
parent | 073ef8f453445bbe0cfa2569abdaed2a50721a95 (diff) | |
download | hdf5-22867dca0e1123aef450b3feae34661cefb64a91.zip hdf5-22867dca0e1123aef450b3feae34661cefb64a91.tar.gz hdf5-22867dca0e1123aef450b3feae34661cefb64a91.tar.bz2 |
[svn-r2579] Purpose:
Clean up small compiler warnings and add missing function prototypes.
Platforms tested:
FreeBSD 4.1
Diffstat (limited to 'src/H5FDlog.c')
-rw-r--r-- | src/H5FDlog.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/H5FDlog.c b/src/H5FDlog.c index c441793..148f3ef 100644 --- a/src/H5FDlog.c +++ b/src/H5FDlog.c @@ -636,9 +636,8 @@ H5FD_log_cmp(const H5FD_t *_f1, const H5FD_t *_f2) *------------------------------------------------------------------------- */ static herr_t -H5FD_log_query(const H5FD_t *_f, unsigned long *flags /* out */) +H5FD_log_query(const UNUSED H5FD_t *_f, unsigned long *flags /* out */) { - const H5FD_log_t *f = (const H5FD_log_t*)_f; herr_t ret_value=SUCCEED; FUNC_ENTER(H5FD_log_query, FAIL); |