Skip to content

Commit

Permalink
Remove unused variable
Browse files Browse the repository at this point in the history
Signed-off-by: Quincey Koziol <[email protected]>
  • Loading branch information
qkoziol committed Apr 11, 2024
1 parent 0842e56 commit 54a5051
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/H5FDsubfiling/H5FDioc_threads.c
Original file line number Diff line number Diff line change
Expand Up @@ -1378,10 +1378,8 @@ ioc_io_queue_dispatch_eligible_entries(ioc_data_t *ioc_data, bool try_lock)

if (try_lock) {
bool acquired;
herr_t ret;

ret = H5TS_mutex_trylock(&ioc_data->io_queue.q_mutex, &acquired);
assert(SUCCEED == ret);
H5TS_mutex_trylock(&ioc_data->io_queue.q_mutex, &acquired);
if (!acquired)
return;
}
Expand Down

0 comments on commit 54a5051

Please sign in to comment.