From: Dmitry V. Levin Date: Sun, 5 Jul 2015 16:30:10 +0000 (+0000) Subject: term.c: fix typo X-Git-Tag: v4.11~484 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8c3e8e7db7ae017985a57ab66554a3f4f5b91d9a;p=strace term.c: fix typo * term.c: Rename TCLFLSH to TCFLSH. --- 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???");