Remove remaining reference to struct serial::current_timeout

I get this when trying to build for --host=x68_64-w64-mingw32:

/home/emaisin/src/binutils-gdb/gdb/ser-mingw.c: In function 'void ser_windows_raw(serial*)':
/home/emaisin/src/binutils-gdb/gdb/ser-mingw.c:166:8: error: 'struct serial' has no member named 'current_timeout'
   scb->current_timeout = 0;
        ^~~~~~~~~~~~~~~

It is just a leftover from

  9bcbdca808b5f9fec6217d20bd4b48a56008c460
  PR remote/21188: Fix remote serial timeout

gdb/ChangeLog:

	* ser-mingw.c (ser_windows_raw): Remove reference to
	struct serial::current_timeout.
This commit is contained in:
Simon Marchi 2017-03-21 11:35:42 -04:00
parent 2253c8f089
commit 0e7b8f6106
2 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2017-03-21 Simon Marchi <simon.marchi@ericsson.com>
* ser-mingw.c (ser_windows_raw): Remove reference to
struct serial::current_timeout.
2017-03-21 Ivo Raisr <ivo.raisr@oracle.com>
PR tdep/20928

View File

@ -163,8 +163,6 @@ ser_windows_raw (struct serial *scb)
state.fAbortOnError = FALSE;
state.ByteSize = 8;
scb->current_timeout = 0;
if (SetCommState (h, &state) == 0)
warning (_("SetCommState failed"));
}