diff options
author | Christopher Faylor <me@cgf.cx> | 2002-12-28 17:39:51 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-12-28 17:39:51 +0000 |
commit | 99f1f06bca020c2523ba36d217606d4619277b3e (patch) | |
tree | 2d4cc34f9e169ed44c5b5782e794d360f069b72b | |
parent | 32104d82b4baa37714bed7fd2b2bcea4970328a5 (diff) | |
download | newlib-unlabeled-1.100.2.zip newlib-unlabeled-1.100.2.tar.gz newlib-unlabeled-1.100.2.tar.bz2 |
Eliminate device number argument from fhandler constructors throughout.github/unlabeled-1.100.2unlabeled-1.100.2
-rw-r--r-- | winsup/cygwin/fhandler_console.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/fhandler_console.cc b/winsup/cygwin/fhandler_console.cc index 3873634..da778b0 100644 --- a/winsup/cygwin/fhandler_console.cc +++ b/winsup/cygwin/fhandler_console.cc @@ -842,7 +842,7 @@ fhandler_console::tcgetattr (struct termios *t) } fhandler_console::fhandler_console () : - fhandler_termios (FH_CONSOLE) + fhandler_termios () { } |