diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-02-12 17:04:40 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-02-12 17:04:40 (GMT) |
commit | 1074ccf4d935792506aa5acd8628f57be65d2091 (patch) | |
tree | ee5985e74f56af453d4fa66c33777f83f09566ea /src/H5FDlog.c | |
parent | bf1419ffe4a3a94c6c0750d48692fd9d9d1e3d8d (diff) | |
download | hdf5-1074ccf4d935792506aa5acd8628f57be65d2091.zip hdf5-1074ccf4d935792506aa5acd8628f57be65d2091.tar.gz hdf5-1074ccf4d935792506aa5acd8628f57be65d2091.tar.bz2 |
[svn-r6398] Purpose:
Code cleanup
Description:
Clean up some compiler warnings
Platforms tested:
FreeBSD 4.7 (sleipnir)
Diffstat (limited to 'src/H5FDlog.c')
-rw-r--r-- | src/H5FDlog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5FDlog.c b/src/H5FDlog.c index ecf98ce..584f4af 100644 --- a/src/H5FDlog.c +++ b/src/H5FDlog.c @@ -820,7 +820,7 @@ done: *------------------------------------------------------------------------- */ static haddr_t -H5FD_log_alloc(H5FD_t *_file, H5FD_mem_t type, hid_t dxpl_id, hsize_t size) +H5FD_log_alloc(H5FD_t *_file, H5FD_mem_t type, hid_t UNUSED dxpl_id, hsize_t size) { H5FD_log_t *file = (H5FD_log_t*)_file; haddr_t addr; @@ -1296,7 +1296,7 @@ done: *------------------------------------------------------------------------- */ static herr_t -H5FD_log_flush(H5FD_t *_file, hid_t dxpl_id, unsigned UNUSED closing) +H5FD_log_flush(H5FD_t *_file, hid_t UNUSED dxpl_id, unsigned UNUSED closing) { H5FD_log_t *file = (H5FD_log_t*)_file; herr_t ret_value=SUCCEED; /* Return value */ |