1
0
mirror of https://github.com/open-simh/simh.git synced 2026-01-17 00:34:02 +00:00

Fix compiler identified typo reported by Peter Schorn

This commit is contained in:
Mark Pizzolato 2013-04-21 05:45:40 -07:00
parent de22137d1b
commit 4c6f086eb3

View File

@ -2667,7 +2667,7 @@ else {
if (mp->lines > 1) {
fprintf (st, "Line: %d", j);
if (mp->notelnet != lp->notelnet)
fprintf (st, " - %telnet", lp->notelnet ? "no" : "");
fprintf (st, " - %stelnet", lp->notelnet ? "no" : "");
if (lp->uptr && (lp->uptr != lp->mp->uptr))
fprintf (st, " - Unit: %s", sim_uname (lp->uptr));
fprintf (st, "\n");