Corrected typo in CmdCD.c for "count_total" when compiled without Tcl/Tk.

This commit is contained in:
Tim Edwards 2020-04-18 15:49:23 -04:00
parent 0a78dc0ab5
commit bcb8e9a081
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
8.3.3
8.3.4

View File

@ -3373,7 +3373,7 @@ CmdDrc(w, cmd)
#else
if ((DRCBackGround != DRC_SET_OFF) && (count_total == -1))
count_total = 0;
if (count_gotal >= 0)
if (count_total >= 0)
TxPrintf("Total DRC errors found: %d\n", count_total);
#endif
break;