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:57 +0300
committerChristopher Faylor <me@cgf.cx>2002-12-28 20:39:57 +0300
commit7c5e686cb768649eaba7a58dd071a746eba1435a (patch)
tree35492cb490bfa83f14e3a84f43e806861a9bb901
parentb31cc1fa994e71307ffc4b35a43bea61e1e18b69 (diff)
Eliminate device number argument from fhandler constructors throughout.unlabeled-1.30.4
-rw-r--r--winsup/cygwin/fhandler_raw.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/fhandler_raw.cc b/winsup/cygwin/fhandler_raw.cc
index 0bf5e3d6c..5e566a1aa 100644
--- a/winsup/cygwin/fhandler_raw.cc
+++ b/winsup/cygwin/fhandler_raw.cc
@@ -116,8 +116,8 @@ fhandler_dev_raw::writebuf (void)
return ret;
}
-fhandler_dev_raw::fhandler_dev_raw (DWORD devtype)
- : fhandler_base (devtype)
+fhandler_dev_raw::fhandler_dev_raw ()
+ : fhandler_base ()
{
clear ();
set_need_fork_fixup ();