From 8e9a39e17c30f7ee4d082f9965218d7b8238ac96 Mon Sep 17 00:00:00 2001 From: Tomasz Wlostowski Date: Sun, 27 Sep 2020 17:50:24 +0200 Subject: [PATCH] drc: fix incorrect DRCE_LAST --- pcbnew/drc/drc_item.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/drc/drc_item.h b/pcbnew/drc/drc_item.h index 75434d94ad..99431c5070 100644 --- a/pcbnew/drc/drc_item.h +++ b/pcbnew/drc/drc_item.h @@ -77,7 +77,7 @@ enum PCB_DRC_CODE { DRCE_DIFF_PAIR_GAP_OUT_OF_RANGE, DRCE_DIFF_PAIR_UNCOUPLED_LENGTH_TOO_LONG, - DRCE_LAST = DRCE_TOO_MANY_VIAS + DRCE_LAST = DRCE_DIFF_PAIR_UNCOUPLED_LENGTH_TOO_LONG };