X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Fantithread%2Fexamples%2Farabella.c;h=82643b591d16e7455d6383e6a03297ca8468d4a7;hp=47aca2ef20562c610b6311e43ff1dc31417b7f47;hb=d1a951b82386391b82e48b32403891f85e253565;hpb=55d814230f7fb628bb5303cd53498209c7928040 diff --git a/ccan/antithread/examples/arabella.c b/ccan/antithread/examples/arabella.c index 47aca2ef..82643b59 100644 --- a/ccan/antithread/examples/arabella.c +++ b/ccan/antithread/examples/arabella.c @@ -128,7 +128,7 @@ static void paint_triangle(struct image *image, const struct triangle *tri) x1 = tri->coord[i1].x, y1 = tri->coord[i1].y; x2 = tri->coord[i2].x, y2 = tri->coord[i2].y; - // test for easy cases, else split trinagle in two and render both halfs + // test for easy cases, else split triangle in two and render both halfs if (y1 == y2) { if (x1 > x2) swap(&x1, &x2); add_flat_triangle(image, x1, y1, x2, y2, x0, y0,