From f6dddd33749db46b44bc25cd7c3044852d129a4f Mon Sep 17 00:00:00 2001 From: Måns Rullgård Date: Fri, 9 Jul 2010 19:27:07 +0000 Subject: tiny_psnr: use abs() Originally committed as revision 24146 to svn://svn.ffmpeg.org/ffmpeg/trunk --- tests/tiny_psnr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/tiny_psnr.c') diff --git a/tests/tiny_psnr.c b/tests/tiny_psnr.c index 681fd13951..4a8ba42ad7 100644 --- a/tests/tiny_psnr.c +++ b/tests/tiny_psnr.c @@ -145,7 +145,7 @@ int main(int argc,char* argv[]){ } } - fseek(f[shift<0], shift < 0 ? -shift : shift, SEEK_CUR); + fseek(f[shift<0], abs(shift), SEEK_CUR); fseek(f[0],skip_bytes,SEEK_CUR); fseek(f[1],skip_bytes,SEEK_CUR); -- cgit v1.2.3