summaryrefslogtreecommitdiffstats
path: root/src/H5FDlog.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@koziol.gov>2020-06-28 01:02:51 (GMT)
committerQuincey Koziol <koziol@koziol.gov>2020-06-28 01:02:51 (GMT)
commit71b601d0d3610d508a5dfa0d3a3ff54b71f5090a (patch)
treebde7d558742dcb06d59659f1c892eb6467d43ade /src/H5FDlog.c
parentee4eb09b5f5a562b82ab7c48272edf91988eaf82 (diff)
downloadhdf5-71b601d0d3610d508a5dfa0d3a3ff54b71f5090a.zip
hdf5-71b601d0d3610d508a5dfa0d3a3ff54b71f5090a.tar.gz
hdf5-71b601d0d3610d508a5dfa0d3a3ff54b71f5090a.tar.bz2
Clean up warnings
Diffstat (limited to 'src/H5FDlog.c')
-rw-r--r--src/H5FDlog.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/H5FDlog.c b/src/H5FDlog.c
index 2700286..78b7742 100644
--- a/src/H5FDlog.c
+++ b/src/H5FDlog.c
@@ -1146,9 +1146,11 @@ H5FD_log_read(H5FD_t *_file, H5FD_mem_t type, hid_t H5_ATTR_UNUSED dxpl_id, hadd
size_t orig_size = size; /* Save the original size for later */
haddr_t orig_addr = addr;
H5_timer_t read_timer; /* Timer for read operation */
- H5_timer_t seek_timer; /* Timer for seek operation */
H5_timevals_t read_times; /* Elapsed time for read operation */
+#ifndef H5_HAVE_PREADWRITE
+ H5_timer_t seek_timer; /* Timer for seek operation */
H5_timevals_t seek_times; /* Elapsed time for seek operation */
+#endif /* H5_HAVE_PREADWRITE */
HDoff_t offset = (HDoff_t)addr;
herr_t ret_value = SUCCEED; /* Return value */
@@ -1348,9 +1350,11 @@ H5FD_log_write(H5FD_t *_file, H5FD_mem_t type, hid_t H5_ATTR_UNUSED dxpl_id, had
size_t orig_size = size; /* Save the original size for later */
haddr_t orig_addr = addr;
H5_timer_t write_timer; /* Timer for write operation */
- H5_timer_t seek_timer; /* Timer for seek operation */
H5_timevals_t write_times; /* Elapsed time for write operation */
+#ifndef H5_HAVE_PREADWRITE
+ H5_timer_t seek_timer; /* Timer for seek operation */
H5_timevals_t seek_times; /* Elapsed time for seek operation */
+#endif /* H5_HAVE_PREADWRITE */
HDoff_t offset = (HDoff_t)addr;
herr_t ret_value = SUCCEED; /* Return value */