From 97ee2d804730734da1fb68695a905ea89e53b003 Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Wed, 26 Oct 2022 16:23:36 +0200 Subject: [PATCH] Fix typo --- src/frontend/inp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/inp.c b/src/frontend/inp.c index ad7099ccd..f53634be1 100644 --- a/src/frontend/inp.c +++ b/src/frontend/inp.c @@ -1899,7 +1899,7 @@ void create_circbyline(char *line, bool reset, bool lastline) * free the deck. The card allocations themselves will be freed * elsewhere */ if (ciprefix(".end", line) && (line[4] == '\0' || isspace_c(line[4]))) { - circarray[linec] = NULL; /* termiante the deck */ + circarray[linec] = NULL; /* terminate the deck */ inp_spsource((FILE *) NULL, FALSE, NULL, TRUE); /* process */ tfree(circarray); /* set to empty */ linec = 0;