From 4c6f086eb3f0fe139efd59de0e4dd74e8e2c28a1 Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Sun, 21 Apr 2013 05:45:40 -0700 Subject: [PATCH] Fix compiler identified typo reported by Peter Schorn --- sim_tmxr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sim_tmxr.c b/sim_tmxr.c index aec99a08..50830049 100644 --- a/sim_tmxr.c +++ b/sim_tmxr.c @@ -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");