summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixChan.c
diff options
context:
space:
mode:
authornijtmans@users.sourceforge.net <jan.nijtmans>2012-04-23 13:17:12 (GMT)
committernijtmans@users.sourceforge.net <jan.nijtmans>2012-04-23 13:17:12 (GMT)
commit710e57182b245141bed978043b7a2621d5d097c1 (patch)
tree3326a12bac5c8ff056623f23c433b10d6d915585 /unix/tclUnixChan.c
parente4d07f5a90c9bff9035032d5bca3ccf914786d91 (diff)
parent6e14d4b037124606898f47db23fd11da4db0b27e (diff)
downloadtcl-710e57182b245141bed978043b7a2621d5d097c1.zip
tcl-710e57182b245141bed978043b7a2621d5d097c1.tar.gz
tcl-710e57182b245141bed978043b7a2621d5d097c1.tar.bz2
make some more internal tables const
Diffstat (limited to 'unix/tclUnixChan.c')
-rw-r--r--unix/tclUnixChan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tclUnixChan.c b/unix/tclUnixChan.c
index 53c5c47..93bb1fe 100644
--- a/unix/tclUnixChan.c
+++ b/unix/tclUnixChan.c
@@ -1063,7 +1063,7 @@ TtyGetOptionProc(
# define TtyGetBaud(speed) ((int) (speed))
#else /* !DIRECT_BAUD */
-static struct {int baud; unsigned long speed;} speeds[] = {
+static CONST struct {int baud; unsigned long speed;} speeds[] = {
#ifdef B0
{0, B0},
#endif