Index: toolpath.c =================================================================== --- toolpath.c (revision 31831) +++ toolpath.c (revision 31832) @@ -315,10 +315,10 @@ for(pa = pcb_poly_island_first(result->fill, &it); pa != NULL; pa = pcb_poly_island_next(&it)) { rnd_pline_t *pl = pcb_poly_contour(&it); if (pl != NULL) { /* we have a contour */ - pcb_pline_to_lines(result->res_path, pl, tool_dia + extra_offs, 0, pcb_no_flags()); + pcb_pline_to_lines(result->res_path, pl, tool_dia + extra_offs, 0, pcb_no_flags(), 0); cnt++; for(pl = pcb_poly_hole_first(&it); pl != NULL; pl = pcb_poly_hole_next(&it)) { - pcb_pline_to_lines(result->res_path, pl, tool_dia + extra_offs, 0, pcb_no_flags()); + pcb_pline_to_lines(result->res_path, pl, tool_dia + extra_offs, 0, pcb_no_flags(), 0); cnt++; } }