From 8c3e8e7db7ae017985a57ab66554a3f4f5b91d9a Mon Sep 17 00:00:00 2001 From: "Dmitry V. Levin" Date: Sun, 5 Jul 2015 16:30:10 +0000 Subject: [PATCH] term.c: fix typo * term.c: Rename TCLFLSH to TCFLSH. --- term.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/term.c b/term.c index 8dfc9aa7..fbcd4a7c 100644 --- a/term.c +++ b/term.c @@ -32,10 +32,12 @@ */ #include -#include "xlat/tcxonc_options.h" +#ifdef TCXONC +# include "xlat/tcxonc_options.h" +#endif -#ifdef TCLFLSH -#include "xlat/tcflsh_options.h" +#ifdef TCFLSH +# include "xlat/tcflsh_options.h" #endif #include "xlat/baud_options.h" @@ -166,7 +168,7 @@ term_ioctl(struct tcb *tcp, const unsigned int code, long arg) printxval(tcxonc_options, arg, "TC???"); return 1; #endif -#ifdef TCLFLSH +#ifdef TCFLSH case TCFLSH: tprints(", "); printxval(tcflsh_options, arg, "TC???");