Skip to content

Commit 1d67ee1

Browse files
committed
Remove harmless warning
1 parent 078df1c commit 1d67ee1

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
@@ -844,7 +844,7 @@ void test_sp_image_convolute_fractional(CuTest * tc){
844844
fcorr = sp_image_convolute_fractional(a,b,NULL,precision,1);
845845
int x,y,z;
846846
long long index;
847-
real max = sp_image_max(fcorr,&index,&x,&y,&z);
847+
sp_image_max(fcorr,&index,&x,&y,&z);
848848
CuAssertTrue(tc, ((int)((real)x/precision+t_x+0.5)) % sp_image_x(a) == 0);
849849
CuAssertTrue(tc, ((int)((real)y/precision+t_y+0.5)) % sp_image_y(a) == 0);
850850
CuAssertTrue(tc, ((int)((real)z/precision+t_z+0.5)) % sp_image_z(a) == 0);

0 commit comments

Comments
 (0)