diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1998-10-26 21:18:54 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1998-10-26 21:18:54 (GMT) |
commit | 69d3cf72b3498e4f6ee95425881cf227f7f71c93 (patch) | |
tree | 686a04bfbdced05835ec3d075a367c95c96cab3f /src/H5Osdspace.c | |
parent | 4d5f1b72de9f2439904975da411dea4f8095fe7b (diff) | |
download | hdf5-69d3cf72b3498e4f6ee95425881cf227f7f71c93.zip hdf5-69d3cf72b3498e4f6ee95425881cf227f7f71c93.tar.gz hdf5-69d3cf72b3498e4f6ee95425881cf227f7f71c93.tar.bz2 |
[svn-r797] Changed comments from returning "SUCCEED/FAIL" to "non-negative/negative"
and also fixed a few more explicit checks against FAIL.
Diffstat (limited to 'src/H5Osdspace.c')
-rw-r--r-- | src/H5Osdspace.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/H5Osdspace.c b/src/H5Osdspace.c index adec06c..74634cc 100644 --- a/src/H5Osdspace.c +++ b/src/H5Osdspace.c @@ -161,7 +161,7 @@ H5O_sdspace_decode(H5F_t *f, const uint8 *p, H5O_shared_t __unused__ *sh) const uint8 *p; IN: the raw information buffer const void *mesg; IN: Pointer to the simple dimensionality struct RETURNS - SUCCEED/FAIL + Non-negative on success/Negative on failure DESCRIPTION This function encodes the native memory form of the simple dimensionality message in the "raw" disk form. @@ -290,9 +290,7 @@ H5O_sdspace_copy(const void *mesg, void *dest) * Purpose: Frees the inside of a dataspace message and resets it to some * initial value. * - * Return: Success: SUCCEED - * - * Failure: FAIL + * Return: Non-negative on success/Negative on failure * * Programmer: Robb Matzke * Thursday, April 30, 1998 @@ -375,7 +373,7 @@ H5O_sdspace_size(H5F_t *f, const void *mesg) intn indent; IN: Amount to indent information by intn fwidth; IN: Field width (?) RETURNS - SUCCEED/FAIL + Non-negative on success/Negative on failure DESCRIPTION This function prints debugging output to the stream passed as a parameter. |