diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-11-12 00:33:21 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-11-12 00:33:21 (GMT) |
commit | fac0c1327142486041080e47282f875d64cad740 (patch) | |
tree | d04083b422ca1c6fda10190ee17f1765bb494209 /src/H5Oplist.c | |
parent | 31e94618b59ff1bd7cc556a5fa5d8980200c90cf (diff) | |
download | hdf5-fac0c1327142486041080e47282f875d64cad740.zip hdf5-fac0c1327142486041080e47282f875d64cad740.tar.gz hdf5-fac0c1327142486041080e47282f875d64cad740.tar.bz2 |
[svn-r6076] Purpose:
Update
Description:
Changed some of the asserts to check that a non-NULL H5F_t* is passed
in.
Platforms tested:
Eirene PP
Arabica Fortran
Modi4 PP Fortran
Diffstat (limited to 'src/H5Oplist.c')
-rw-r--r-- | src/H5Oplist.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5Oplist.c b/src/H5Oplist.c index 093e0b0..17aabc3 100644 --- a/src/H5Oplist.c +++ b/src/H5Oplist.c @@ -137,7 +137,7 @@ H5O_plist_decode(H5F_t UNUSED *f, const uint8_t *p, H5O_shared_t UNUSED *sh) FUNC_ENTER_NOAPI(H5O_plist_decode, NULL); /* check args */ - assert(!f); + assert(f); assert(p); assert(!sh); @@ -296,7 +296,7 @@ H5O_plist_encode(H5F_t UNUSED *f, uint8_t *p, const void *mesg) FUNC_ENTER_NOAPI(H5O_plist_encode, FAIL); /* check args */ - assert(!f); + assert(f); assert(p); assert(plist); @@ -518,7 +518,7 @@ H5O_plist_debug(H5F_t UNUSED *f, const void *mesg, FILE *stream, FUNC_ENTER_NOAPI(H5O_plist_debug, FAIL); /* check args */ - assert(!f); + assert(f); assert(plist); assert(stream); assert(indent >= 0); |