Skip to content

Commit b36f90d

Browse files
committed
Remove stray variable
1 parent 1d67ee1 commit b36f90d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/ImageTests.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -858,7 +858,7 @@ void test_sp_image_convolute_fractional(CuTest * tc){
858858
sp_image_fourier_translate(b,t_x,t_y,t_z);
859859
precision = 2;
860860
fcorr = sp_image_convolute_fractional(a,b,NULL,precision,1);
861-
max = sp_image_max(fcorr,&index,&x,&y,&z);
861+
sp_image_max(fcorr,&index,&x,&y,&z);
862862
CuAssertTrue(tc, ((int)((real)x/precision+t_x+0.5)) % sp_image_x(a) == 0);
863863
CuAssertTrue(tc, ((int)((real)y/precision+t_y+0.5)) % sp_image_y(a) == 0);
864864
CuAssertTrue(tc, ((int)((real)z/precision+t_z+0.5)) % sp_image_z(a) == 0);

0 commit comments

Comments
 (0)