Skip to content

Commit

Permalink
compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
sfomel committed Mar 27, 2024
1 parent 7b5abb1 commit abda997
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion user/junyan/opostep2.c
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ void lowrank_init2(int nzb, int nxb, int nkxz, int nkzz, int nkxx, int m, int nx

}

void lowrank_close2()
void lowrank_close2(void)
/*< free the work space for opo >*/
{

Expand Down
3 changes: 1 addition & 2 deletions user/yliu/mmmult.c
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,9 @@ void mmmult_lop (bool adj, bool add,
free (*data); free (data);
}

void mmmult_close ()
void mmmult_close (void)
/*< free filter memory >*/
{
free (filter);
}

/* $Id$ */
3 changes: 1 addition & 2 deletions user/yliu/mmmult3.c
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,9 @@ void mmmult3_lop (bool adj, bool add,
free (**data); free (*data); free (data);
}

void mmmult_close ()
void mmmult_close (void)
/*< free filter memory >*/
{
free (filter);
}

/* $Id$ */

0 comments on commit abda997

Please sign in to comment.