diff options
Diffstat (limited to 'src/H5FDlog.c')
-rw-r--r-- | src/H5FDlog.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/H5FDlog.c b/src/H5FDlog.c index b1a9848..ee5dc14 100644 --- a/src/H5FDlog.c +++ b/src/H5FDlog.c @@ -469,13 +469,15 @@ H5FD_log_open(const char *name, unsigned flags, hid_t fapl_id, { int o_flags; int fd; - struct stat sb; H5FD_log_t *file=NULL; H5FD_log_fapl_t *fa; /* File access property list information */ #ifdef WIN32 HFILE filehandle; struct _BY_HANDLE_FILE_INFORMATION fileinfo; int results; + struct _stati64 sb; +#else + struct stat sb; #endif H5P_genplist_t *plist; /* Property list */ |