aboutsummaryrefslogtreecommitdiff
path: root/gdb/gdbtk.c
diff options
context:
space:
mode:
authorChristopher Faylor <me+cygwin@cgf.cx>1998-05-05 13:33:37 +0000
committerChristopher Faylor <me+cygwin@cgf.cx>1998-05-05 13:33:37 +0000
commitdfe9d3099da0bce5fad45576e81d7c203f543c3d (patch)
tree9721a4c637902f512bc40f4f54a466daf2696ef8 /gdb/gdbtk.c
parentca118edaffe043c6296d0f6d8957a479de9c3ded (diff)
downloadgdb-dfe9d3099da0bce5fad45576e81d7c203f543c3d.zip
gdb-dfe9d3099da0bce5fad45576e81d7c203f543c3d.tar.gz
gdb-dfe9d3099da0bce5fad45576e81d7c203f543c3d.tar.bz2
Tue May 5 09:30:25 1998 Christopher Faylor <cgf@cygnus.com>
* gdbtk.c (_initialize_gdbtk): Use correct device names in cygwin-specific calls (cosmetic change).
Diffstat (limited to 'gdb/gdbtk.c')
-rw-r--r--gdb/gdbtk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/gdbtk.c b/gdb/gdbtk.c
index 7a3c319..d7a2638 100644
--- a/gdb/gdbtk.c
+++ b/gdb/gdbtk.c
@@ -3319,10 +3319,10 @@ _initialize_gdbtk ()
cygwin32_attach_handle_to_fd ("/dev/conin", 0,
GetStdHandle (STD_INPUT_HANDLE),
1, GENERIC_READ);
- cygwin32_attach_handle_to_fd ("/dev/conin", 1,
+ cygwin32_attach_handle_to_fd ("/dev/conout", 1,
GetStdHandle (STD_OUTPUT_HANDLE),
0, GENERIC_WRITE);
- cygwin32_attach_handle_to_fd ("/dev/conin", 2,
+ cygwin32_attach_handle_to_fd ("/dev/conout", 2,
GetStdHandle (STD_ERROR_HANDLE),
0, GENERIC_WRITE);
break;