Index: obj_line.h =================================================================== --- obj_line.h (revision 30912) +++ obj_line.h (revision 30913) @@ -135,7 +135,7 @@ linelist_foreach(&(layer)->Line, &__it__, line) { #define PCB_LINE_ALL_LOOP(top) do { \ - pcb_cardinal_t l; \ + rnd_cardinal_t l; \ pcb_layer_t *layer = (top)->Layer; \ for (l = 0; l < ((top)->LayerN > 0 ? (top)->LayerN : PCB->Data->LayerN); l++, layer++) \ { \ @@ -142,7 +142,7 @@ PCB_LINE_LOOP(layer) #define PCB_LINE_COPPER_LOOP(top) do { \ - pcb_cardinal_t l; \ + rnd_cardinal_t l; \ pcb_layer_t *layer = (top)->Layer; \ for (l = 0; l < ((top)->LayerN > 0 ? (top)->LayerN : PCB->Data->LayerN); l++, layer++) \ { \ @@ -150,7 +150,7 @@ PCB_LINE_LOOP(layer) #define PCB_LINE_SILK_LOOP(top) do { \ - pcb_cardinal_t l; \ + rnd_cardinal_t l; \ pcb_layer_t *layer = (top)->Layer; \ for (l = 0; l < ((top)->LayerN > 0 ? (top)->LayerN : PCB->Data->LayerN); l++, layer++) \ { \ @@ -158,7 +158,7 @@ PCB_LINE_LOOP(layer) #define PCB_LINE_VISIBLE_LOOP(top) do { \ - pcb_cardinal_t l; \ + rnd_cardinal_t l; \ pcb_layer_t *layer = (top)->Layer; \ for (l = 0; l < ((top)->LayerN > 0 ? (top)->LayerN : PCB->Data->LayerN); l++, layer++) \ { \