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]`.
This commit is contained in:
@@ -1335,16 +1335,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")
|
||||
|
||||
@@ -115,7 +115,7 @@ check_dataset(hid_t fid, unsigned verbose, const symbol_info_t *symbol, symbol_t
|
||||
|
||||
/* Emit informational message */
|
||||
if(verbose)
|
||||
HDfprintf(stderr, "Symbol = '%s', location = %lld\n", symbol->name, (long long)start);
|
||||
HDfprintf(stderr, "Symbol = '%s', location = %" PRIuMAX ",%" PRIuMAX "\n", symbol->name, (uintmax_t)start[0], (uintmax_t)start[1]);
|
||||
|
||||
/* Read record from dataset */
|
||||
record->rec_id = (uint64_t)ULLONG_MAX;
|
||||
@@ -126,7 +126,7 @@ check_dataset(hid_t fid, unsigned verbose, const symbol_info_t *symbol, symbol_t
|
||||
if(record->rec_id != start[1]) {
|
||||
HDfprintf(stderr, "*** ERROR ***\n");
|
||||
HDfprintf(stderr, "Incorrect record value!\n");
|
||||
HDfprintf(stderr, "Symbol = '%s', location = %lld, record->rec_id = %llu\n", symbol->name, (long long)start, (unsigned long long)record->rec_id);
|
||||
HDfprintf(stderr, "Symbol = '%s', location = %" PRIuMAX ",%" PRIuMAX ", record->rec_id = %" PRIu64 "\n", symbol->name, (uintmax_t)start[0], (uintmax_t)start[1], record->rec_id);
|
||||
return -1;
|
||||
} /* end if */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user