diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2000-11-28 16:18:42 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2000-11-28 16:18:42 (GMT) |
commit | 51f5bbc54fae647682f4d6723c5c956053e6195a (patch) | |
tree | 0401dd21d85ca75986d222012908ac379a35d15b /src/H5P.c | |
parent | 923c2ecb780c709a210f74d679fc4cdde08fa0d3 (diff) | |
download | hdf5-51f5bbc54fae647682f4d6723c5c956053e6195a.zip hdf5-51f5bbc54fae647682f4d6723c5c956053e6195a.tar.gz hdf5-51f5bbc54fae647682f4d6723c5c956053e6195a.tar.bz2 |
[svn-r3008] Purpose:
Code cleanup
Description:
Several places in the code were using -2 as a default value for various
features. However, when a default value is returned from a function that
is supposed to return negative on failure, it was causing confusion and
extra work for users to check for the special value.
Solution:
Replaced hard-coded -2 values in the code with symbolic names, then changed
symbolic names to 0 instead of -2.
Platforms tested:
FreeBSD 4.2 (hawkwind)
Diffstat (limited to 'src/H5P.c')
-rw-r--r-- | src/H5P.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1847,7 +1847,7 @@ H5Pget_driver(hid_t plist_id) * Rewritten to use the virtual file layer. * * Robb Matzke, 1999-08-05 - * If the driver ID is -2 then substitute the current value of + * If the driver ID is H5FD_VFD_DEFAULT then substitute the current value of * H5FD_SEC2. *------------------------------------------------------------------------- */ @@ -1874,7 +1874,7 @@ H5Pget_driver(hid_t plist_id) "not a file access or data transfer property list"); } - if (H5P_DEFAULT==ret_value) + if (H5FD_VFD_DEFAULT==ret_value) ret_value = H5FD_SEC2; FUNC_LEAVE(ret_value); |