diff options
author | dkf <dkf@noemail.net> | 2002-07-19 13:59:10 (GMT) |
---|---|---|
committer | dkf <dkf@noemail.net> | 2002-07-19 13:59:10 (GMT) |
commit | 14ad4b05160d176b9dc139f01f9e196954964f78 (patch) | |
tree | e413e79fab26581a52ab292eb8cfd4c15a58621a /win/tclWinSerial.c | |
parent | d9241d70c77cf4405d75c8dbb53e90e41b2bb2f9 (diff) | |
download | tcl-14ad4b05160d176b9dc139f01f9e196954964f78.zip tcl-14ad4b05160d176b9dc139f01f9e196954964f78.tar.gz tcl-14ad4b05160d176b9dc139f01f9e196954964f78.tar.bz2 |
Made variable static.
FossilOrigin-Name: 9e033a75880ddc583b65844874062daea8fc1b24
Diffstat (limited to 'win/tclWinSerial.c')
-rw-r--r-- | win/tclWinSerial.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/win/tclWinSerial.c b/win/tclWinSerial.c index 6a60700..e5e69fa 100644 --- a/win/tclWinSerial.c +++ b/win/tclWinSerial.c @@ -11,7 +11,7 @@ * * Serial functionality implemented by Rolf.Schroedter@dlr.de * - * RCS: @(#) $Id: tclWinSerial.c,v 1.20 2002/01/25 21:36:10 dgp Exp $ + * RCS: @(#) $Id: tclWinSerial.c,v 1.21 2002/07/19 13:59:10 dkf Exp $ */ #include "tclWinInt.h" @@ -147,7 +147,11 @@ typedef struct SerialEvent { * pointer. */ } SerialEvent; -COMMTIMEOUTS no_timeout = { /* We don't use timeouts */ +/* + * We don't use timeouts. + */ + +static COMMTIMEOUTS no_timeout = { 0, /* ReadIntervalTimeout */ 0, /* ReadTotalTimeoutMultiplier */ 0, /* ReadTotalTimeoutConstant */ |