summaryrefslogtreecommitdiffstats
path: root/generic/tclTest.c
diff options
context:
space:
mode:
authornijtmans <nijtmans>2010-02-05 20:53:12 (GMT)
committernijtmans <nijtmans>2010-02-05 20:53:12 (GMT)
commit9f80e538be5be980c7e52789ff2162b08db46823 (patch)
treea7fd50364b89ff5d71caa2334171f35231b0dd1c /generic/tclTest.c
parent66b1b7dda9580db59b81a9fe27b553015e5a65bd (diff)
downloadtcl-9f80e538be5be980c7e52789ff2162b08db46823.zip
tcl-9f80e538be5be980c7e52789ff2162b08db46823.tar.gz
tcl-9f80e538be5be980c7e52789ff2162b08db46823.tar.bz2
Follow-up to earlier commit today:
Eliminate the need for an extra Stubs Pointer for adressing a static stub table: Just change the exported table from static to MODULE_SCOPE.
Diffstat (limited to 'generic/tclTest.c')
-rw-r--r--generic/tclTest.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclTest.c b/generic/tclTest.c
index 192e7e2..793dccc 100644
--- a/generic/tclTest.c
+++ b/generic/tclTest.c
@@ -14,7 +14,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclTest.c,v 1.143 2009/12/16 23:26:01 nijtmans Exp $
+ * RCS: @(#) $Id: tclTest.c,v 1.144 2010/02/05 20:53:12 nijtmans Exp $
*/
#undef STATIC_BUILD
@@ -2227,7 +2227,7 @@ ExitProcOdd(
sprintf(buf, "odd %d\n", PTR2INT(clientData));
len = strlen(buf);
if (len != (size_t) write(1, buf, len)) {
- Tcl_Panic("ExitProcOdd: unable to write to stdout");
+ Tcl_Panic("ExitProcOdd: unable to write to stdout");
}
}
@@ -2241,7 +2241,7 @@ ExitProcEven(
sprintf(buf, "even %d\n", PTR2INT(clientData));
len = strlen(buf);
if (len != (size_t) write(1, buf, len)) {
- Tcl_Panic("ExitProcEven: unable to write to stdout");
+ Tcl_Panic("ExitProcEven: unable to write to stdout");
}
}