Skip to content

Commit

Permalink
correct !=26
Browse files Browse the repository at this point in the history
  • Loading branch information
janhclem committed Feb 27, 2025
1 parent 19fb1c1 commit 01d41c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mptrac.c
Original file line number Diff line number Diff line change
Expand Up @@ -12542,7 +12542,7 @@ void dd_communicate_particles_cleo(
long unsigned int* tmp_ptr = (long unsigned int*) particles[ip].q[7];
long unsigned int tmp = *tmp_ptr;

if (tmp != 26) {
if (tmp == 26) {
ip_ap_rec = ip;
break;
}
Expand Down

0 comments on commit 01d41c2

Please sign in to comment.