term.c: fix typo

* term.c: Rename TCLFLSH to TCFLSH.
This commit is contained in:
Дмитрий Левин 2015-07-05 16:30:10 +00:00
parent 34bd4d255f
commit 8c3e8e7db7

10
term.c
View File

@ -32,10 +32,12 @@
*/ */
#include <linux/termios.h> #include <linux/termios.h>
#include "xlat/tcxonc_options.h" #ifdef TCXONC
# include "xlat/tcxonc_options.h"
#endif
#ifdef TCLFLSH #ifdef TCFLSH
#include "xlat/tcflsh_options.h" # include "xlat/tcflsh_options.h"
#endif #endif
#include "xlat/baud_options.h" #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???"); printxval(tcxonc_options, arg, "TC???");
return 1; return 1;
#endif #endif
#ifdef TCLFLSH #ifdef TCFLSH
case TCFLSH: case TCFLSH:
tprints(", "); tprints(", ");
printxval(tcflsh_options, arg, "TC???"); printxval(tcflsh_options, arg, "TC???");