From 6d603393d410ef8f75165a435f4d638c7a66681e Mon Sep 17 00:00:00 2001 From: pabs3 Date: Thu, 13 Nov 2008 04:42:09 +0000 Subject: [PATCH] Silence a couple of g++ 4.4 warnings in ETL make check git-svn-id: https://synfig.svn.sourceforge.net/svnroot/synfig@2192 1f10aa63-cdf2-0310-b900-c93c546f37ac --- ETL/trunk/test/pen.cpp | 6 +++--- ETL/trunk/test/surface.cpp | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ETL/trunk/test/pen.cpp b/ETL/trunk/test/pen.cpp index f29319f..ef6eaee 100644 --- a/ETL/trunk/test/pen.cpp +++ b/ETL/trunk/test/pen.cpp @@ -92,7 +92,7 @@ int generic_pen_test(int w, int h) if(pen.end_x()-pen.x()!=w-1) { - printf("FAILURE! "__FILE__"@%d: iterator_x inconsistency (%d!=%d)\n",__LINE__,pen.end_x()-pen.x(),w); + printf("FAILURE! "__FILE__"@%d: iterator_x inconsistency (%ld!=%d)\n",__LINE__,pen.end_x()-pen.x(),w); return 1; } @@ -239,7 +239,7 @@ int box_blur_test(void) { for(x=0;x= w) ix = w-1; - if(ix-iy<=1 && iy-ix<=1 || iy==h/2 || ix==w/2) + if( (ix-iy<=1 && iy-ix<=1) || iy==h/2 || ix==w/2) f += 2; } } diff --git a/ETL/trunk/test/surface.cpp b/ETL/trunk/test/surface.cpp index 54ad73d..e2dd0e5 100644 --- a/ETL/trunk/test/surface.cpp +++ b/ETL/trunk/test/surface.cpp @@ -77,7 +77,7 @@ void make_pattern(generic_pen pen, int w, int h) { for(x=0;x