aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2002-12-28 17:40:04 +0000
committerChristopher Faylor <me@cgf.cx>2002-12-28 17:40:04 +0000
commit1005a3eaa61bda95a5ad4933cf47e0a160384b78 (patch)
treeea18ee9abaf9e8379738acb729f34c42ee516adb
parente6f67652437163ece480c947f87e67b7294b57ea (diff)
downloadnewlib-unlabeled-1.17.4.zip
newlib-unlabeled-1.17.4.tar.gz
newlib-unlabeled-1.17.4.tar.bz2
Eliminate device number argument from fhandler constructors throughout.github/unlabeled-1.17.4unlabeled-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 d6b3059..929aae5 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)
{
}