diff options
author | Quincey Koziol <koziol@lbl.gov> | 2020-08-06 22:46:40 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@lbl.gov> | 2020-08-22 19:01:17 (GMT) |
commit | a90258b04b0c2dc07019b55333102e756567e0c4 (patch) | |
tree | 8d2b3381f6c73d1481584f8cc5718e0785560d96 /src/H5Pencdec.c | |
parent | ba087ce2b56163dd47827327d492798fb9899562 (diff) | |
download | hdf5-a90258b04b0c2dc07019b55333102e756567e0c4.zip hdf5-a90258b04b0c2dc07019b55333102e756567e0c4.tar.gz hdf5-a90258b04b0c2dc07019b55333102e756567e0c4.tar.bz2 |
Switch H5VM inline routines back to single underscope and put a comment in their header about this naming
Diffstat (limited to 'src/H5Pencdec.c')
-rw-r--r-- | src/H5Pencdec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Pencdec.c b/src/H5Pencdec.c index 32824b7..8b10971 100644 --- a/src/H5Pencdec.c +++ b/src/H5Pencdec.c @@ -94,7 +94,7 @@ H5P__encode_size_t(const void *value, void **_pp, size_t *size) { uint64_t enc_value = (uint64_t)*(const size_t *)value; /* Property value to encode */ uint8_t **pp = (uint8_t **)_pp; - unsigned enc_size = H5VM__limit_enc_size(enc_value); /* Size of encoded property */ + unsigned enc_size = H5VM_limit_enc_size(enc_value); /* Size of encoded property */ FUNC_ENTER_PACKAGE_NOERR @@ -135,7 +135,7 @@ herr_t H5P__encode_hsize_t(const void *value, void **_pp, size_t *size) { uint64_t enc_value = (uint64_t)*(const hsize_t *)value; /* Property value to encode */ - unsigned enc_size = H5VM__limit_enc_size(enc_value); /* Size of encoded property */ + unsigned enc_size = H5VM_limit_enc_size(enc_value); /* Size of encoded property */ uint8_t **pp = (uint8_t **)_pp; FUNC_ENTER_PACKAGE_NOERR |