Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2002-12-28 20:39:50 +0300
committerChristopher Faylor <me@cgf.cx>2002-12-28 20:39:50 +0300
commit9d2ced8168c26017a739ce99148e528389ff0c2a (patch)
treec442660534ed73fafc06a66d85ecd4a5f671d0c7
parente5b03449b5a4d305bdcc04bf57accfb0b9087153 (diff)
Eliminate device number argument from fhandler constructors throughout.unlabeled-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 9cf1b287d..6f8559740 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 */