diff options
author | Jordan Henderson <jhenderson@hdfgroup.org> | 2023-10-03 19:39:01 (GMT) |
---|---|---|
committer | Jordan Henderson <jhenderson@hdfgroup.org> | 2023-10-03 19:39:01 (GMT) |
commit | db8b00865fdb76ce076d2032a0b27c5b012e9afc (patch) | |
tree | 3ffb877096fe9dec084f9d0d6a43e9a416460f35 /src/H5FDonion.c | |
parent | 3f0b8817a166bac02ee6155544b950d9c4cdfbc3 (diff) | |
parent | cb6de06dcc18b31ab3f1d53bd93f0bbfaa0a17e1 (diff) | |
download | hdf5-db8b00865fdb76ce076d2032a0b27c5b012e9afc.zip hdf5-db8b00865fdb76ce076d2032a0b27c5b012e9afc.tar.gz hdf5-db8b00865fdb76ce076d2032a0b27c5b012e9afc.tar.bz2 |
Merge branch 'develop' into feature/vol_tools_tests
Diffstat (limited to 'src/H5FDonion.c')
-rw-r--r-- | src/H5FDonion.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5FDonion.c b/src/H5FDonion.c index 5c0994c..a16338b 100644 --- a/src/H5FDonion.c +++ b/src/H5FDonion.c @@ -492,7 +492,7 @@ H5FD__onion_commit_new_revision_record(H5FD_onion_t *file) /* Update history info to accommodate new revision */ if (history->n_revisions == 0) { - unsigned char *ptr = buf; /* re-use buffer space to compute checksum */ + unsigned char *ptr = buf; /* reuse buffer space to compute checksum */ assert(history->record_locs == NULL); history->n_revisions = 1; @@ -508,7 +508,7 @@ H5FD__onion_commit_new_revision_record(H5FD_onion_t *file) file->header.history_size += H5FD_ONION_ENCODED_SIZE_RECORD_POINTER; } /* end if no extant revisions in history */ else { - unsigned char *ptr = buf; /* re-use buffer space to compute checksum */ + unsigned char *ptr = buf; /* reuse buffer space to compute checksum */ assert(history->record_locs != NULL); |