summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVailin Choi <vchoi@hdfgroup.org>2017-08-24 16:46:53 (GMT)
committerVailin Choi <vchoi@hdfgroup.org>2017-08-24 16:46:53 (GMT)
commit593e4038b3ab474a47e468bb3478d4ae3a6820e6 (patch)
tree1e2f4f9d09fcaff4bad6be13f7ac46d723c6aa92
parentf3b72e1bde7368a98adb327189c4403bbba7ca77 (diff)
parent268f01fd477e0474fa5727a47abef214a5e4293b (diff)
downloadhdf5-593e4038b3ab474a47e468bb3478d4ae3a6820e6.zip
hdf5-593e4038b3ab474a47e468bb3478d4ae3a6820e6.tar.gz
hdf5-593e4038b3ab474a47e468bb3478d4ae3a6820e6.tar.bz2
Merge pull request #641 in HDFFV/hdf5 from ~VCHOI/my_hdf5_fork:develop to develop
* commit '268f01fd477e0474fa5727a47abef214a5e4293b': Fix for daily test failure Fix for the compilation error from the PGI compiler.
-rw-r--r--src/H5Oefl.c2
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);