summaryrefslogtreecommitdiffstats
path: root/src/H5FDlog.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5FDlog.c')
-rw-r--r--src/H5FDlog.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5FDlog.c b/src/H5FDlog.c
index 6dc76cb..cb04903 100644
--- a/src/H5FDlog.c
+++ b/src/H5FDlog.c
@@ -599,7 +599,7 @@ H5FD__log_open(const char *name, unsigned flags, hid_t fapl_id, haddr_t maxaddr)
/* Set the log file pointer */
if (fa->logfile)
- file->logfp = HDfopen(fa->logfile, "w");
+ file->logfp = fopen(fa->logfile, "w");
else
file->logfp = stderr;
@@ -797,7 +797,7 @@ H5FD__log_close(H5FD_t *_file)
if (file->fa.flags & H5FD_LOG_FLAVOR)
file->flavor = (unsigned char *)H5MM_xfree(file->flavor);
if (file->logfp != stderr)
- HDfclose(file->logfp);
+ fclose(file->logfp);
} /* end if */
if (file->fa.logfile)