Skip to content

Commit ea047a5

Browse files
Fix issue with declaration after label (#56)
1 parent 4ca376c commit ea047a5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/h5_async_vol.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22689,6 +22689,7 @@ H5VL_async_request_wait(void *obj, uint64_t timeout, H5VL_request_status_t *stat
2268922689
unsigned int mutex_count = 0;
2269022690
hbool_t tmp = async_instance_g->start_abt_push;
2269122691
ABT_pool * pool_ptr = NULL;
22692+
int tmp_cnt = 0;
2269222693

2269322694
assert(obj);
2269422695
assert(status);
@@ -22816,8 +22817,6 @@ H5VL_async_request_wait(void *obj, uint64_t timeout, H5VL_request_status_t *stat
2281622817
async_instance_g->start_abt_push = tmp;
2281722818

2281822819
done:
22819-
22820-
int tmp_cnt = 0;
2282122820
while (false == acquired && mutex_count > 0) {
2282222821
func_log_int1(__func__, "trying to acquire global lock, count", mutex_count);
2282322822
if (H5TSmutex_acquire(mutex_count, &acquired) < 0)

0 commit comments

Comments
 (0)