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).
This commit is contained in:
Christopher Faylor 1998-05-05 13:33:37 +00:00
parent ca118edaff
commit dfe9d3099d
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Tue May 5 09:30:25 1998 Christopher Faylor <cgf@cygnus.com>
* gdbtk.c (_initialize_gdbtk): Use correct device names in
cygwin-specific call (cosmetic change).
Wed Apr 29 15:53:16 1998 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* gdbtk.c (gdbtk_ignorable_warning): removed va_list parameter,

View File

@ -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;