summaryrefslogtreecommitdiffstats
path: root/fortran/src/H5Of.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-07-27 22:28:33 (GMT)
committerGitHub <noreply@github.com>2023-07-27 22:28:33 (GMT)
commit41a6b581aef055821796fc9d31f58778dc1c4197 (patch)
treef36f43cc54acdaeab80edd100183719402121508 /fortran/src/H5Of.c
parent0e82707100cf3d1b698d2ec0cad08db61d552d63 (diff)
downloadhdf5-41a6b581aef055821796fc9d31f58778dc1c4197.zip
hdf5-41a6b581aef055821796fc9d31f58778dc1c4197.tar.gz
hdf5-41a6b581aef055821796fc9d31f58778dc1c4197.tar.bz2
Sync Fortran w/ develop (#3296)
Diffstat (limited to 'fortran/src/H5Of.c')
-rw-r--r--fortran/src/H5Of.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/fortran/src/H5Of.c b/fortran/src/H5Of.c
index addc6e3..393f505 100644
--- a/fortran/src/H5Of.c
+++ b/fortran/src/H5Of.c
@@ -38,7 +38,7 @@ fill_h5o_info_t_f(H5O_info2_t Oinfo, H5O_info_t_f *object_info)
object_info->type = (int_f)Oinfo.type;
object_info->rc = (int_f)Oinfo.rc;
- ts = HDgmtime(&Oinfo.atime);
+ ts = gmtime(&Oinfo.atime);
object_info->atime[0] = (int_f)ts->tm_year + 1900; /* year starts at 1900 */
object_info->atime[1] = (int_f)ts->tm_mon + 1; /* month starts at 0 in C */
@@ -49,7 +49,7 @@ fill_h5o_info_t_f(H5O_info2_t Oinfo, H5O_info_t_f *object_info)
object_info->atime[6] = (int_f)ts->tm_sec;
object_info->atime[7] = -32767; /* millisecond is not available, assign it -HUGE(0) */
- ts = HDgmtime(&Oinfo.btime);
+ ts = gmtime(&Oinfo.btime);
object_info->btime[0] = (int_f)ts->tm_year + 1900; /* year starts at 1900 */
object_info->btime[1] = (int_f)ts->tm_mon + 1; /* month starts at 0 in C */
@@ -60,7 +60,7 @@ fill_h5o_info_t_f(H5O_info2_t Oinfo, H5O_info_t_f *object_info)
object_info->btime[6] = (int_f)ts->tm_sec;
object_info->btime[7] = -32767; /* millisecond is not available, assign it -HUGE(0) */
- ts = HDgmtime(&Oinfo.ctime);
+ ts = gmtime(&Oinfo.ctime);
object_info->ctime[0] = (int_f)ts->tm_year + 1900; /* year starts at 1900 */
object_info->ctime[1] = (int_f)ts->tm_mon + 1; /* month starts at 0 in C */
@@ -71,7 +71,7 @@ fill_h5o_info_t_f(H5O_info2_t Oinfo, H5O_info_t_f *object_info)
object_info->ctime[6] = (int_f)ts->tm_sec;
object_info->ctime[7] = -32767; /* millisecond is not available, assign it -HUGE(0) */
- ts = HDgmtime(&Oinfo.mtime);
+ ts = gmtime(&Oinfo.mtime);
object_info->mtime[0] = (int_f)ts->tm_year + 1900; /* year starts at 1900 */
object_info->mtime[1] = (int_f)ts->tm_mon + 1; /* month starts at 0 in C */