Skip to content

Commit

Permalink
Fix misleading indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastiangrimberg committed Jun 17, 2024
1 parent 79495e8 commit 66e7941
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/findpts_imp.h
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,10 @@ void findptsms( uint *const code_base, const unsigned code
const uint *const session_id_match, const uint npt,
struct findpts_data *const fd)
{
if (fd->fevsetup==1) array_free(&fd->savpt); fd->fevsetup=0;
if (fd->fevsetup==1) {
array_free(&fd->savpt);
fd->fevsetup=0;
}
const uint np = fd->cr.comm.np, id=fd->cr.comm.id;
struct array hash_pt, src_pt, out_pt;
double *distv = tmalloc(double,npt);
Expand Down

0 comments on commit 66e7941

Please sign in to comment.