diff options
| author | dgp@users.sourceforge.net <dgp> | 2004-06-17 21:39:03 (GMT) |
|---|---|---|
| committer | dgp@users.sourceforge.net <dgp> | 2004-06-17 21:39:03 (GMT) |
| commit | ce315659eb5024bae542a8f8c58e0b83d133ab72 (patch) | |
| tree | eea10b1724d894b2de5cff9ab66ea396a9b0b51f | |
| parent | 7eb1f66fd8be5d926a8c70de36666a6522a82ddb (diff) | |
| download | tcl-ce315659eb5024bae542a8f8c58e0b83d133ab72.zip tcl-ce315659eb5024bae542a8f8c58e0b83d133ab72.tar.gz tcl-ce315659eb5024bae542a8f8c58e0b83d133ab72.tar.bz2 | |
* generic/tclObj.c: Added missing space in panic message.
| -rw-r--r-- | generic/tclObj.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclObj.c b/generic/tclObj.c index d4b790e..750fb00 100644 --- a/generic/tclObj.c +++ b/generic/tclObj.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: tclObj.c,v 1.59 2004/05/06 04:41:53 msofer Exp $ + * RCS: @(#) $Id: tclObj.c,v 1.60 2004/06/17 21:39:03 dgp Exp $ */ #include "tclInt.h" @@ -2639,7 +2639,7 @@ Tcl_DbIncrRefCount(objPtr, file, line) hPtr = Tcl_FindHashEntry(tablePtr, (char *) objPtr); if (!hPtr) { Tcl_Panic("%s%s", - "Trying to incr ref count of", + "Trying to incr ref count of ", "Tcl_Obj allocated in another thread"); } } |
