# HG changeset patch # User mru # Date 1281990846 0 # Node ID 77dfabe0d66f41632a6039cb78b858d7b7809615 # Parent 908559b5bd7c97b5be767b81dedaf04ec0c60927 fft-test: format error output more readably diff -r 908559b5bd7c -r 77dfabe0d66f fft-test.c --- a/fft-test.c Fri Aug 13 02:02:07 2010 +0000 +++ b/fft-test.c Mon Aug 16 20:34:06 2010 +0000 @@ -186,7 +186,7 @@ for (i = 0; i < n; i++) { double e= fabsf(tab1[i] - (tab2[i] / scale)); if (e >= 1e-3) { - av_log(NULL, AV_LOG_ERROR, "ERROR %d: %f %f\n", + av_log(NULL, AV_LOG_ERROR, "ERROR %5d: %10.6f %10.6f\n", i, tab1[i], tab2[i]); err = 1; }