Skip to content

Commit 167faa3

Browse files
committed
declaration of get_rectangle_staples_general was inconsistent
1 parent 1e5f116 commit 167faa3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

get_rectangle_staples.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ void get_rectangle_staples(su3 * const v, const int x, const int mu) {
3030
get_rectangle_staples_general(v,x,mu,g_gauge_field);
3131
}
3232

33-
void get_rectangle_staples_general(su3 * const v, const int x, const int mu, su3** gf) {
33+
void get_rectangle_staples_general(su3 * const v, const int x, const int mu, const su3** const gf) {
3434
su3 ALIGN tmp1, tmp2;
3535
int y, z, nu;
3636
su3 * a, * b, * c, * d, * e;

get_rectangle_staples.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@
2020
#define _GET_RECTANGLE_STAPLES_H
2121

2222
void get_rectangle_staples(su3 * const v, const int x, const int mu);
23-
void get_rectangle_staples_general(su3 * const v, const int x, const int mu, const su3** gf);
23+
void get_rectangle_staples_general(su3 * const v, const int x, const int mu, const su3** const gf);
2424

2525
#endif

0 commit comments

Comments
 (0)