diff options
author | David Young <dyoung@hdfgroup.org> | 2020-04-25 02:09:14 (GMT) |
---|---|---|
committer | Larry Knox <lrknox@hdfgroup.org> | 2020-04-27 16:27:13 (GMT) |
commit | 68adfb86d056af222ab80c349c56e0bd1d183f09 (patch) | |
tree | ede7155b5149de6f5e7c459e8443f739ad0fb017 /src/H5FDdirect.c | |
parent | 295d7ec69bdd1bb6f662cee1fe8ff70fe50f55c5 (diff) | |
download | hdf5-68adfb86d056af222ab80c349c56e0bd1d183f09.zip hdf5-68adfb86d056af222ab80c349c56e0bd1d183f09.tar.gz hdf5-68adfb86d056af222ab80c349c56e0bd1d183f09.tar.bz2 |
Merge pull request #2537 in HDFFV/hdf5 from ~DYOUNG/werror:fix-werrors to develop
* commit 'd16eb45d536bd13ca3cf1b0bdc76c58d95d13f17':
For compatibility with non-C99 Visual Studio versions, use "%" PRIuMAX instead of "%ju".
Fix `test/swmr_sparse_reader.c:118:77: error: cast from pointer to integer of different size [-Werror=pointer-to-int-cast]` and `test/snapshots-hdf5/current/test/swmr_sparse_reader.c:129:100: error: cast from pointer to integer of different size [-Werror=pointer-to-int-cast]`.
Fix `src/H5FDdirect.c:1346:5: error: ISO C90 forbids mixed declarations and code [-Werror=declaration-after-statement]`.
Diffstat (limited to 'src/H5FDdirect.c')
-rw-r--r-- | src/H5FDdirect.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/H5FDdirect.c b/src/H5FDdirect.c index 906ec28..4a41403 100644 --- a/src/H5FDdirect.c +++ b/src/H5FDdirect.c @@ -1337,16 +1337,13 @@ static herr_t H5FD_direct_lock(H5FD_t *_file, hbool_t rw) { H5FD_direct_t *file = (H5FD_direct_t*)_file; /* VFD file struct */ - int lock; /* The type of lock */ + const int lock = rw ? LOCK_EX : LOCK_SH; herr_t ret_value = SUCCEED; /* Return value */ FUNC_ENTER_NOAPI_NOINIT HDassert(file); - /* Determine the type of lock */ - int lock = rw ? LOCK_EX : LOCK_SH; - /* Place the lock with non-blocking */ if(HDflock(file->fd, lock | LOCK_NB) < 0) HSYS_GOTO_ERROR(H5E_FILE, H5E_BADFILE, FAIL, "unable to flock file") |