diff options
author | Pierre Muller <muller@sourceware.org> | 2011-02-21 13:40:32 +0000 |
---|---|---|
committer | Pierre Muller <muller@sourceware.org> | 2011-02-21 13:40:32 +0000 |
commit | e25b2cfa2a4fb779f95971926973dd7b77901f81 (patch) | |
tree | 38fb54eec2d7c2ed27ab7a6af197d4a9f30ed196 /gdb/ser-mingw.c | |
parent | 4af53f973a65f675b7b084b174e9cdfa1c5265e1 (diff) | |
download | gdb-e25b2cfa2a4fb779f95971926973dd7b77901f81.zip gdb-e25b2cfa2a4fb779f95971926973dd7b77901f81.tar.gz gdb-e25b2cfa2a4fb779f95971926973dd7b77901f81.tar.bz2 |
* ser-mingw.c (ser_windows_close): Reformat comment to better conform
to GNU coding standards.
Diffstat (limited to 'gdb/ser-mingw.c')
-rw-r--r-- | gdb/ser-mingw.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/ser-mingw.c b/gdb/ser-mingw.c index 2c1f0ca..928a03b 100644 --- a/gdb/ser-mingw.c +++ b/gdb/ser-mingw.c @@ -221,10 +221,10 @@ ser_windows_close (struct serial *scb) { struct ser_windows_state *state; - /* Stop any pending selects. On Windows 95 OS, CancelIo function does not - exist. In that case, it can be replaced by a call to CloseHandle, but - this is not necessary here as we do close the Windows handle by calling - close (scb->fd) below. */ + /* Stop any pending selects. On Windows 95 OS, CancelIo function does + not exist. In that case, it can be replaced by a call to CloseHandle, + but this is not necessary here as we do close the Windows handle + by calling close (scb->fd) below. */ if (CancelIo) CancelIo ((HANDLE) _get_osfhandle (scb->fd)); state = scb->state; |