Skip to content

Commit 587ea71

Browse files
double * before copymat
otherwise, what's A?
1 parent 0893194 commit 587ea71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_drivers.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1130,7 +1130,7 @@ int main(int argc, const char * argv[]) {
11301130

11311131
for (int S = -2; S <= 2; S++) {
11321132
ft_complex * AC = spinsphones(N, M, S);
1133-
ft_complex * BC = (ft_complex *) copymat(A, 2*N, M);
1133+
ft_complex * BC = (ft_complex *) copymat((double *) AC, 2*N, M);
11341134
SRP = ft_plan_rotspinsphere(N, S);
11351135

11361136
FT_TIME(execute_spinsph_hi2lo_default(SRP, AC, M), start, end, NTIMES)

0 commit comments

Comments
 (0)