Skip to content

Commit

Permalink
declaration of get_rectangle_staples_general was inconsistent
Browse files Browse the repository at this point in the history
  • Loading branch information
urbach committed Mar 8, 2015
1 parent 1e5f116 commit 167faa3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion get_rectangle_staples.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ void get_rectangle_staples(su3 * const v, const int x, const int mu) {
get_rectangle_staples_general(v,x,mu,g_gauge_field);
}

void get_rectangle_staples_general(su3 * const v, const int x, const int mu, su3** gf) {
void get_rectangle_staples_general(su3 * const v, const int x, const int mu, const su3** const gf) {
su3 ALIGN tmp1, tmp2;
int y, z, nu;
su3 * a, * b, * c, * d, * e;
Expand Down
2 changes: 1 addition & 1 deletion get_rectangle_staples.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@
#define _GET_RECTANGLE_STAPLES_H

void get_rectangle_staples(su3 * const v, const int x, const int mu);
void get_rectangle_staples_general(su3 * const v, const int x, const int mu, const su3** gf);
void get_rectangle_staples_general(su3 * const v, const int x, const int mu, const su3** const gf);

#endif

0 comments on commit 167faa3

Please sign in to comment.