Skip to content

Commit b5cff60

Browse files
Wrong format specifier
1 parent 6e8f784 commit b5cff60

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/fft.sac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ int main()
4545
y = FFT_2D(reshape([m, r], x));
4646

4747
sec2, nsec2 = MTClock::gettime();
48-
printf("This took %fs\n", MTClock::timediff(sec1, nsec1, sec2, nsec2));
48+
printf("This took %ds\n", MTClock::timediff(sec1, nsec1, sec2, nsec2));
4949
printf("sum is %f\n", sum((double[+])y));
5050

5151
return 0;

0 commit comments

Comments
 (0)