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:40:04 +0300
committerChristopher Faylor <me@cgf.cx>2002-12-28 20:40:04 +0300
commit1005a3eaa61bda95a5ad4933cf47e0a160384b78 (patch)
treeea18ee9abaf9e8379738acb729f34c42ee516adb
parente6f67652437163ece480c947f87e67b7294b57ea (diff)
Eliminate device number argument from fhandler constructors throughout.unlabeled-1.17.4
-rw-r--r--winsup/cygwin/fhandler_windows.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/fhandler_windows.cc b/winsup/cygwin/fhandler_windows.cc
index d6b3059e6..929aae5ce 100644
--- a/winsup/cygwin/fhandler_windows.cc
+++ b/winsup/cygwin/fhandler_windows.cc
@@ -47,7 +47,7 @@ The following unix-style calls are supported:
*/
fhandler_windows::fhandler_windows ()
- : fhandler_base (FH_WINDOWS), hWnd_ (NULL), method_ (WINDOWS_POST)
+ : fhandler_base (), hWnd_ (NULL), method_ (WINDOWS_POST)
{
}