Skip to content
Snippets Groups Projects
Commit 10516533 authored by Thomas Jahns's avatar Thomas Jahns :cartwheel:
Browse files

Remove unused variable.

parent 5862f0a3
No related branches found
No related tags found
No related merge requests found
......@@ -535,7 +535,7 @@ int main(int argc, char **argv)
xmalloc(2 * (size_t)comm_size * sizeof(*ref_src_msg));
struct test_message * ref_dst_msg = ref_src_msg + comm_size;
for (int i = 0, offset = my_rank * comm_size; i < comm_size; ++i) {
for (int i = 0; i < comm_size; ++i) {
transfer_pos[i] = i;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment