diff options
author | Jason Molenda <jsm@bugshack.cygnus.com> | 1999-09-22 03:24:05 +0000 |
---|---|---|
committer | Jason Molenda <jsm@bugshack.cygnus.com> | 1999-09-22 03:24:05 +0000 |
commit | d9a03198266d6194588df6cadc75dd25c0d23305 (patch) | |
tree | ad1df94718ba004f6c5404b3e3562e442e38cd83 /gdb/remote-st.c | |
parent | 854ff0654499b511ce9993ca22aa4d8e88b325d8 (diff) | |
download | gdb-d9a03198266d6194588df6cadc75dd25c0d23305.tar.gz |
import gdb-1999-09-21gdb-1999-09-21
Diffstat (limited to 'gdb/remote-st.c')
-rw-r--r-- | gdb/remote-st.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/remote-st.c b/gdb/remote-st.c index 3400903503f..1d270a44a24 100644 --- a/gdb/remote-st.c +++ b/gdb/remote-st.c @@ -729,7 +729,7 @@ connect_command (args, fromtty) do { FD_SET (0, &readfds); - FD_SET (st2000_desc, &readfds); + FD_SET (DEPRECATED_SERIAL_FD (st2000_desc), &readfds); numfds = select (sizeof (readfds) * 8, &readfds, 0, 0, 0); } while (numfds == 0); @@ -764,7 +764,7 @@ connect_command (args, fromtty) } } - if (FD_ISSET (st2000_desc, &readfds)) + if (FD_ISSET (DEPRECATED_SERIAL_FD (st2000_desc), &readfds)) { while (1) { |