summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorVailin Choi <vchoi@jam.ad.hdfgroup.org>2017-08-24 16:42:35 (GMT)
committerVailin Choi <vchoi@jam.ad.hdfgroup.org>2017-09-06 04:01:47 (GMT)
commit00c572cd6a75406dc0f45cbadf775015e6e6f105 (patch)
tree187940de1a9aebf4ab90cd604ad340ac83ec7f8d /src
parent38194b496d9a868de21c6bcc8bda3bf30690712e (diff)
downloadhdf5-00c572cd6a75406dc0f45cbadf775015e6e6f105.zip
hdf5-00c572cd6a75406dc0f45cbadf775015e6e6f105.tar.gz
hdf5-00c572cd6a75406dc0f45cbadf775015e6e6f105.tar.bz2
Fix for daily test failure
Fix for the compilation error from the PGI compiler.
Diffstat (limited to 'src')
-rw-r--r--src/H5Oefl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Oefl.c b/src/H5Oefl.c
index 26ac63f..218d250 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);