aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2002-12-28 17:39:50 +0000
committerChristopher Faylor <me@cgf.cx>2002-12-28 17:39:50 +0000
commit9d2ced8168c26017a739ce99148e528389ff0c2a (patch)
treec442660534ed73fafc06a66d85ecd4a5f671d0c7
parente5b03449b5a4d305bdcc04bf57accfb0b9087153 (diff)
downloadnewlib-unlabeled-1.21.4.zip
newlib-unlabeled-1.21.4.tar.gz
newlib-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.cc2
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 */