Index: bboard.c =================================================================== --- bboard.c (revision 4965) +++ bboard.c (revision 4966) @@ -532,7 +532,7 @@ bboard_init_board_cairo(PCB->MaxWidth, PCB->MaxHeight, bboard_bgcolor, options[HA_antialias].int_value); /* write out components on solder side */ - ELEMENT_LOOP(PCB->Data); + PCB_ELEMENT_LOOP(PCB->Data); if (PCB_FLAG_TEST(PCB_FLAG_ONSOLDER, (element))) { bboard_export_element_cairo(element, 1); } @@ -539,7 +539,7 @@ END_LOOP; /* write out components on component side */ - ELEMENT_LOOP(PCB->Data); + PCB_ELEMENT_LOOP(PCB->Data); if (!PCB_FLAG_TEST(PCB_FLAG_ONSOLDER, (element))) { bboard_export_element_cairo(element, 0); }