diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2023-10-04 09:55:15 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-04 09:55:15 (GMT) |
commit | 069688c3faf01607a9a7a1ddb8f26961d8b993a7 (patch) | |
tree | a6a8141136a17ab8ae0a62a9d8b60ea5fcea5ab1 /src/H5WB.c | |
parent | c423e74fbfbfe84497210e5b15db20bee8c84c3c (diff) | |
download | hdf5-069688c3faf01607a9a7a1ddb8f26961d8b993a7.zip hdf5-069688c3faf01607a9a7a1ddb8f26961d8b993a7.tar.gz hdf5-069688c3faf01607a9a7a1ddb8f26961d8b993a7.tar.bz2 |
Fix spelling (#3633)
Diffstat (limited to 'src/H5WB.c')
-rw-r--r-- | src/H5WB.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -161,10 +161,10 @@ H5WB_actual(H5WB_t *wb, size_t need) /* Sanity check */ HDassert(wb->actual_size > wb->wrapped_size); - /* Check if we can re-use existing buffer */ + /* Check if we can reuse existing buffer */ if (need <= wb->alloc_size) HGOTO_DONE(wb->actual_buf) - /* Can't re-use existing buffer, free it and proceed */ + /* Can't reuse existing buffer, free it and proceed */ else wb->actual_buf = H5FL_BLK_FREE(extra_buf, wb->actual_buf); } /* end if */ |