summaryrefslogtreecommitdiffstats
path: root/src/H5Dint.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5Dint.c')
-rw-r--r--src/H5Dint.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/H5Dint.c b/src/H5Dint.c
index 5448316..c378326 100644
--- a/src/H5Dint.c
+++ b/src/H5Dint.c
@@ -837,17 +837,13 @@ H5D__calculate_minimum_header_size( \
if (H5O_OH_GET_VERSION(ohdr) == 1) {
/* v1 object headers store modification time as a message */
- time_t mtime = H5_now();
+ time_t mtime;
ret_value += H5O_msg_size_oh(
file,
ohdr,
H5O_MTIME_NEW_ID,
&mtime,
0);
- } else { /* "version 2" */
- /* TODO: is this backwards? reduce space if _not_ set? */
- /* 4 4-byte (32-bit) fields: atime, mtime, ctime, btime */
- ret_value += 16;
}
}