diff options
author | nijtmans <nijtmans> | 2010-02-21 20:09:37 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-02-21 20:09:37 (GMT) |
commit | c0efda860028550fa1392602cb9d479a67c7cf55 (patch) | |
tree | 107091c0a01f164224f02d295ebb0a866b39c5d4 /generic/regerror.c | |
parent | 3fb3008b2698db7d2a9f46adeac8c91565ba890b (diff) | |
download | tcl-c0efda860028550fa1392602cb9d479a67c7cf55.zip tcl-c0efda860028550fa1392602cb9d479a67c7cf55.tar.gz tcl-c0efda860028550fa1392602cb9d479a67c7cf55.tar.bz2 |
Follow-up to Fix [Bug 2954959] expr abs(0.0) is -0.0
Some more tests, showing that the LONG implementation
was not quite correct too, and a fix for that.
Some more internal "const" additions
Diffstat (limited to 'generic/regerror.c')
-rw-r--r-- | generic/regerror.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/regerror.c b/generic/regerror.c index 49b6f3e..a1a0163 100644 --- a/generic/regerror.c +++ b/generic/regerror.c @@ -35,7 +35,7 @@ * Unknown-error explanation. */ -static char unk[] = "*** unknown regex error code 0x%x ***"; +static const char unk[] = "*** unknown regex error code 0x%x ***"; /* * Struct to map among codes, code names, and explanations. |