diff options
author | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2017-08-24 16:42:35 (GMT) |
---|---|---|
committer | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2017-08-24 16:42:35 (GMT) |
commit | 38b4e97692e34040c9731b6c9b9f9cab49fde7ef (patch) | |
tree | 0d618db272051090afcf9e42651cd0beaad6aba3 /src/H5Oefl.c | |
parent | 1ef8577a4aaaa4120a819ff36747fdca99abdc26 (diff) | |
download | hdf5-38b4e97692e34040c9731b6c9b9f9cab49fde7ef.zip hdf5-38b4e97692e34040c9731b6c9b9f9cab49fde7ef.tar.gz hdf5-38b4e97692e34040c9731b6c9b9f9cab49fde7ef.tar.bz2 |
Fix for daily test failure
Fix for the compilation error from the PGI compiler.
Diffstat (limited to 'src/H5Oefl.c')
-rw-r--r-- | src/H5Oefl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Oefl.c b/src/H5Oefl.c index 7d78caf..49c442f 100644 --- a/src/H5Oefl.c +++ b/src/H5Oefl.c @@ -151,7 +151,7 @@ H5O_efl_decode(H5F_t *f, hid_t dxpl_id, H5O_t H5_ATTR_UNUSED *open_oh, if((s = (const char *)H5HL_offset_into(heap, mesg->slot[u].name_offset)) == NULL) HGOTO_ERROR(H5E_SYM, H5E_CANTGET, NULL, "unable to get external file name") - if(*s == NULL) + if(*s == (char)NULL) HGOTO_ERROR(H5E_SYM, H5E_CANTGET, NULL, "invalid external file name") mesg->slot[u].name = H5MM_xstrdup (s); HDassert(mesg->slot[u].name); |