summaryrefslogtreecommitdiff
path: root/gdb/ser-mingw.c
diff options
context:
space:
mode:
authorPierre Muller <muller@ics.u-strasbg.fr>2011-02-21 13:40:31 +0000
committerPierre Muller <muller@ics.u-strasbg.fr>2011-02-21 13:40:31 +0000
commit0b0b05ff3863e6c52f28c6d1a7ee29d49349eddd (patch)
treec758074afa3f391186d8034e2f870c49121ea8e1 /gdb/ser-mingw.c
parent8124578162a4eb352cc0e837b7f62e0297a99b33 (diff)
downloadgdb-0b0b05ff3863e6c52f28c6d1a7ee29d49349eddd.tar.gz
* 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.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/ser-mingw.c b/gdb/ser-mingw.c
index 2c1f0ca6830..928a03bbc20 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;