Oops, added missing ';'

Now writing in the wall "don't push before compile" 100 times.
This commit is contained in:
Terseus 2014-04-04 19:20:29 +02:00
parent 2f6a4d5f1a
commit 8eae39e98f

View File

@ -459,7 +459,7 @@ polygon_generic(Imaging im, int n, Edge *e, int ink, int eofill,
/* Process the edge table with a scan line searching for intersections */ /* Process the edge table with a scan line searching for intersections */
float* xx = malloc(sizeof(float) * edge_count * 2); float* xx = malloc(sizeof(float) * edge_count * 2);
if (!xx) { if (!xx) {
free(edge_table) free(edge_table);
return -1; return -1;
} }
for (; ymin <= ymax; ymin++) { for (; ymin <= ymax; ymin++) {