Merge branch 'develop_minor_pr' into H5Pset_fapl_mpi

This commit is contained in:
Dana Robinson 2019-08-27 13:28:55 -07:00
commit 477bd6cd77
2 changed files with 2 additions and 2 deletions

View File

@ -631,7 +631,7 @@ Pflock(int fd, int operation) {
flk.l_pid = 0; /* not used with set */
/* Lock or unlock */
if(HDfcntl(fd, F_SETLK, flk) < 0)
if(HDfcntl(fd, F_SETLK, &flk) < 0)
return -1;
return 0;

View File

@ -1187,7 +1187,7 @@ open_hdf5_file(const hbool_t create_file,
} else {
file_ptr = (struct H5F_t *)H5I_object_verify(file_id, H5I_FILE);
file_ptr = (struct H5F_t *)H5VL_object_verify(file_id, H5I_FILE);
if ( file_ptr == NULL ) {