Skip to content

Commit

Permalink
Fix uninitialised counter variable (#1095)
Browse files Browse the repository at this point in the history
* Fix uninitialised counter variable
  • Loading branch information
LourensVeen authored Dec 3, 2024
1 parent 76d8eb6 commit a321210
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/amuse/community/huayno/src/evolve_sf.c
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,7 @@ static struct particle *partition(FLOAT dt, struct particle *left, struct partic
{
UINT i,n;
dt=fabs(dt);
i=0;
n=right-left+1;
while(1)
{
Expand Down

0 comments on commit a321210

Please sign in to comment.