Corrected an error in the "permute forget" Tcl command option that

would attempt to access uninitialized variables, possibly causing
a crash.
This commit is contained in:
Tim Edwards 2019-06-15 12:29:08 -04:00
parent edbefbd1c4
commit b1d40e6d12
1 changed files with 2 additions and 2 deletions

View File

@ -3811,8 +3811,8 @@ _netcmp_permute(ClientData clientData,
if (PermuteForget(tp->name, fnum, NULL, NULL))
Fprintf(stdout, "No permutations on circuit %s\n", tp->name);
else
Fprintf(stderr, "Unable to reset model %s pin permutation %s, %s.\n",
tp->name, pin1, pin2);
Fprintf(stderr, "Unable to reset model %s pin permutations.\n",
tp->name);
}
return TCL_OK;
}