diff options
author | Christopher Faylor <me@cgf.cx> | 2002-12-28 17:39:50 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-12-28 17:39:50 +0000 |
commit | 9d2ced8168c26017a739ce99148e528389ff0c2a (patch) | |
tree | c442660534ed73fafc06a66d85ecd4a5f671d0c7 | |
parent | e5b03449b5a4d305bdcc04bf57accfb0b9087153 (diff) | |
download | newlib-github/unlabeled-1.21.4.zip newlib-github/unlabeled-1.21.4.tar.gz newlib-github/unlabeled-1.21.4.tar.bz2 |
Eliminate device number argument from fhandler constructors throughout.github/unlabeled-1.21.4unlabeled-1.21.4
-rw-r--r-- | winsup/cygwin/fhandler_clipboard.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/fhandler_clipboard.cc b/winsup/cygwin/fhandler_clipboard.cc index 9cf1b28..6f85597 100644 --- a/winsup/cygwin/fhandler_clipboard.cc +++ b/winsup/cygwin/fhandler_clipboard.cc @@ -33,7 +33,7 @@ static const NO_COPY char *CYGWIN_NATIVE = "CYGWIN_NATIVE_CLIPBOARD"; static UINT cygnativeformat; fhandler_dev_clipboard::fhandler_dev_clipboard () - : fhandler_base (FH_CLIPBOARD), pos (0), membuffer (NULL), msize (0), + : fhandler_base (), pos (0), membuffer (NULL), msize (0), eof (true) { /* FIXME: check for errors and loop until we can open the clipboard */ |