summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixChan.c
diff options
context:
space:
mode:
authornijtmans@users.sourceforge.net <jan.nijtmans>2012-04-23 13:49:01 (GMT)
committernijtmans@users.sourceforge.net <jan.nijtmans>2012-04-23 13:49:01 (GMT)
commit41d0037cdfcc6fb654957efb1199c1fe6547bd35 (patch)
tree4c44f674724aef22717e0efab79ff4896b96ac00 /unix/tclUnixChan.c
parent2ffd0dcedadb031aa64ef561ad49397d64cfdee5 (diff)
parent710e57182b245141bed978043b7a2621d5d097c1 (diff)
downloadtcl-41d0037cdfcc6fb654957efb1199c1fe6547bd35.zip
tcl-41d0037cdfcc6fb654957efb1199c1fe6547bd35.tar.gz
tcl-41d0037cdfcc6fb654957efb1199c1fe6547bd35.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 866d77d..db137aa 100644
--- a/unix/tclUnixChan.c
+++ b/unix/tclUnixChan.c
@@ -981,7 +981,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