diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-04-23 13:49:01 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-04-23 13:49:01 (GMT) |
commit | 84e3fb460607d9f15c570f0f4b9b8e3a33b6c559 (patch) | |
tree | 4c44f674724aef22717e0efab79ff4896b96ac00 /win/tclWinTest.c | |
parent | 154f6e364d28d67ef3d2f09c4a991d46e53ad2d4 (diff) | |
parent | ab4c7318fd564b0196bd38b6573eb84c9d51e2d1 (diff) | |
download | tcl-84e3fb460607d9f15c570f0f4b9b8e3a33b6c559.zip tcl-84e3fb460607d9f15c570f0f4b9b8e3a33b6c559.tar.gz tcl-84e3fb460607d9f15c570f0f4b9b8e3a33b6c559.tar.bz2 |
make some more internal tables const
Diffstat (limited to 'win/tclWinTest.c')
-rw-r--r-- | win/tclWinTest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/tclWinTest.c b/win/tclWinTest.c index 6ef1157..392e830 100644 --- a/win/tclWinTest.c +++ b/win/tclWinTest.c @@ -430,7 +430,7 @@ TestExceptionCmd( "invalid_disp", "guard_page", "invalid_handle", "ctrl+c", NULL }; - static DWORD exceptions[] = { + static const DWORD exceptions[] = { EXCEPTION_ACCESS_VIOLATION, EXCEPTION_DATATYPE_MISALIGNMENT, EXCEPTION_ARRAY_BOUNDS_EXCEEDED, EXCEPTION_FLT_DENORMAL_OPERAND, EXCEPTION_FLT_DIVIDE_BY_ZERO, EXCEPTION_FLT_INEXACT_RESULT, |