Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Warning fix #4682

Merged
merged 2 commits into from
Aug 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tools/lib/h5diff.c
Original file line number Diff line number Diff line change
Expand Up @@ -1746,7 +1746,7 @@ handle_worker_request(char *worker_tasks, int *n_busy_tasks, diff_opt_t *opts, h
MPI_Status status;
int task_idx = 0;
int source = 0;
herr_t ret_value = H5DIFF_NO_ERR;
diff_err_t ret_value = H5DIFF_NO_ERR;

/* Must have at least one busy worker task */
assert(*n_busy_tasks > 0);
Expand Down
Loading