diff options
| author | donal.k.fellows@manchester.ac.uk <dkf> | 2006-09-22 14:48:51 (GMT) |
|---|---|---|
| committer | donal.k.fellows@manchester.ac.uk <dkf> | 2006-09-22 14:48:51 (GMT) |
| commit | 2e1f479e0d6b9eb06784d81603a419bf75c4bb7c (patch) | |
| tree | 8d11c56a35a02dd5dd649775efda77323650ac0f /generic/tclThreadTest.c | |
| parent | bd5188f9ac8f9b378cc8a6df372540f9731f74fe (diff) | |
| download | tcl-2e1f479e0d6b9eb06784d81603a419bf75c4bb7c.zip tcl-2e1f479e0d6b9eb06784d81603a419bf75c4bb7c.tar.gz tcl-2e1f479e0d6b9eb06784d81603a419bf75c4bb7c.tar.bz2 | |
Fix [Bug 1562528]
Diffstat (limited to 'generic/tclThreadTest.c')
| -rw-r--r-- | generic/tclThreadTest.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclThreadTest.c b/generic/tclThreadTest.c index f551746..15a4d95 100644 --- a/generic/tclThreadTest.c +++ b/generic/tclThreadTest.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclThreadTest.c,v 1.16.2.1 2004/10/26 20:14:29 dgp Exp $ + * RCS: @(#) $Id: tclThreadTest.c,v 1.16.2.2 2006/09/22 14:48:52 dkf Exp $ */ #include "tclInt.h" @@ -421,7 +421,7 @@ TclCreateThread(interp, script, joinable) if (Tcl_CreateThread(&id, NewTestThread, (ClientData) &ctrl, TCL_THREAD_STACK_DEFAULT, joinable) != TCL_OK) { Tcl_MutexUnlock(&threadMutex); - Tcl_AppendResult(interp,"can't create a new thread",0); + Tcl_AppendResult(interp,"can't create a new thread",NULL); ckfree((void*)ctrl.script); return TCL_ERROR; } |
