diff options
author | nijtmans@users.sourceforge.net <jan.nijtmans> | 2012-04-23 13:17:12 (GMT) |
---|---|---|
committer | nijtmans@users.sourceforge.net <jan.nijtmans> | 2012-04-23 13:17:12 (GMT) |
commit | 710e57182b245141bed978043b7a2621d5d097c1 (patch) | |
tree | 3326a12bac5c8ff056623f23c433b10d6d915585 /unix/tclUnixChan.c | |
parent | e4d07f5a90c9bff9035032d5bca3ccf914786d91 (diff) | |
parent | 6e14d4b037124606898f47db23fd11da4db0b27e (diff) | |
download | tcl-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.c | 2 |
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 |