diff options
Diffstat (limited to 'src/H5VLpassthru.c')
-rw-r--r-- | src/H5VLpassthru.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5VLpassthru.c b/src/H5VLpassthru.c index 3867df2..09ac661 100644 --- a/src/H5VLpassthru.c +++ b/src/H5VLpassthru.c @@ -650,7 +650,7 @@ H5VL_pass_through_info_to_str(const void *_info, char **str) /* Allocate space for our info */ size_t strSize = 32 + under_vol_str_len; - *str = (char *)H5allocate_memory(strSize, (hbool_t)0); + *str = (char *)H5allocate_memory(strSize, (bool)0); assert(*str); /* Encode our info */ |