X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=ETL%2Ftrunk%2Ftest%2Fpen.cpp;h=ef6eaeedf952fc4e702ec4ffe01ac6dd21e6a70d;hb=a7c9fcfbb608e046e4d47b1345064f2f686bd8d6;hp=92b004f7656f0b5c7d4adce8befe84426d7130b8;hpb=5be3f3a47e79f5581e81f1e8d8422c085236a43c;p=synfig.git diff --git a/ETL/trunk/test/pen.cpp b/ETL/trunk/test/pen.cpp index 92b004f..ef6eaee 100644 --- a/ETL/trunk/test/pen.cpp +++ b/ETL/trunk/test/pen.cpp @@ -38,8 +38,6 @@ using namespace std; using namespace etl; -#define DEBUGPOINT() fprintf(stderr,__FILE__":%d: Debugpoint\n",__LINE__) - /* === C L A S S E S ======================================================= */ int generic_pen_test(int w, int h) @@ -94,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; } @@ -241,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; } }