From: dooglus Date: Thu, 13 Sep 2007 14:54:42 +0000 (+0000) Subject: Spelling corrections. X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=5be3f3a47e79f5581e81f1e8d8422c085236a43c;p=synfig.git Spelling corrections. git-svn-id: http://svn.voria.com/code@665 1f10aa63-cdf2-0310-b900-c93c546f37ac --- diff --git a/ETL/trunk/test/pen.cpp b/ETL/trunk/test/pen.cpp index 35ce509..92b004f 100644 --- a/ETL/trunk/test/pen.cpp +++ b/ETL/trunk/test/pen.cpp @@ -88,31 +88,31 @@ int generic_pen_test(int w, int h) if(diff.x!=w || diff.y!=h) { - printf("FAILURE! "__FILE__"@%d: pen difference inconsistancy ([%d,%d]!=[%d,%d])\n",__LINE__,diff.x,diff.y,w,h); + printf("FAILURE! "__FILE__"@%d: pen difference inconsistency ([%d,%d]!=[%d,%d])\n",__LINE__,diff.x,diff.y,w,h); return 1; } if(pen.end_x()-pen.x()!=w-1) { - printf("FAILURE! "__FILE__"@%d: iterator_x inconsistancy (%d!=%d)\n",__LINE__,pen.end_x()-pen.x(),w); + printf("FAILURE! "__FILE__"@%d: iterator_x inconsistency (%d!=%d)\n",__LINE__,pen.end_x()-pen.x(),w); return 1; } if(pen.end_y()-pen.y()!=h-1) { - printf("FAILURE! "__FILE__"@%d: iterator_y inconsistancy (%d!=%d)\n",__LINE__,pen.end_y()-pen.y(),h); + printf("FAILURE! "__FILE__"@%d: iterator_y inconsistency (%d!=%d)\n",__LINE__,pen.end_y()-pen.y(),h); return 1; } if(&pen.end_y()[-1]!=&pen.y()[(h-2)]) { - printf("FAILURE! "__FILE__"@%d: iterator_y inconsistancy\n",__LINE__); + printf("FAILURE! "__FILE__"@%d: iterator_y inconsistency\n",__LINE__); return 1; } if(&pen.end_x()[-1]!=&pen.x()[(w-2)]) { - printf("FAILURE! "__FILE__"@%d: iterator_x inconsistancy\n",__LINE__); + printf("FAILURE! "__FILE__"@%d: iterator_x inconsistency\n",__LINE__); return 1; }