summaryrefslogtreecommitdiffstats
path: root/src/H5FDstdio.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5FDstdio.c')
-rw-r--r--src/H5FDstdio.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/H5FDstdio.c b/src/H5FDstdio.c
index 32466bc..9a3aff1 100644
--- a/src/H5FDstdio.c
+++ b/src/H5FDstdio.c
@@ -554,6 +554,9 @@ H5FD_stdio_get_eoa(const H5FD_t *_file, H5FD_mem_t /*unused*/ type)
/* Clear the error stack */
H5Eclear_stack(H5E_DEFAULT);
+ /* Shut compiler up */
+ type = type;
+
return(file->eoa);
}
@@ -588,6 +591,9 @@ H5FD_stdio_set_eoa(H5FD_t *_file, H5FD_mem_t /*unused*/ type, haddr_t addr)
/* Clear the error stack */
H5Eclear_stack(H5E_DEFAULT);
+ /* Shut compiler up */
+ type = type;
+
file->eoa = addr;
return(0);