Skip to content

Commit

Permalink
Fix enum type mismatch warning (#4741)
Browse files Browse the repository at this point in the history
  • Loading branch information
hyoklee authored Aug 22, 2024
1 parent c1cbba6 commit 17123cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/H5VLpassthru.c
Original file line number Diff line number Diff line change
Expand Up @@ -2686,7 +2686,7 @@ H5VL_pass_through_request_wait(void *obj, uint64_t timeout, H5VL_request_status_

ret_value = H5VLrequest_wait(o->under_object, o->under_vol_id, timeout, status);

if (ret_value >= 0 && *status != H5ES_STATUS_IN_PROGRESS)
if (ret_value >= 0 && *status != H5VL_REQUEST_STATUS_IN_PROGRESS)
H5VL_pass_through_free_obj(o);

return ret_value;
Expand Down

0 comments on commit 17123cd

Please sign in to comment.