From c57ebd5cba75489c97cbe14f241e792619b09d5b Mon Sep 17 00:00:00 2001 From: Nelson Ferreira Date: Sun, 6 Dec 2015 16:53:42 -0500 Subject: [PATCH] Fix typo on include guard for term.h * src/ui/TTY/terminfo.c: Fix typo Signed-off-by: Nelson Ferreira --- src/ui/TTY/terminfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/TTY/terminfo.c b/src/ui/TTY/terminfo.c index 111f5d7..ae5a8b8 100644 --- a/src/ui/TTY/terminfo.c +++ b/src/ui/TTY/terminfo.c @@ -64,7 +64,7 @@ along with this program. If not, see . */ is equally lame in that it supplies "fixed" headers for curses.h but not term.h.) However, it seems to work to just not include term.h under Solaris, so we try that. KLUDGE! */ -#ifdef TERN_H_FILE +#ifdef TERM_H_FILE #if !(defined (__GNUC__) && defined (SOLARIS2)) #include TERM_H_FILE #endif -- 2.25.1