diff options
author | dgp <dgp@users.sourceforge.net> | 2004-06-17 21:39:03 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2004-06-17 21:39:03 (GMT) |
commit | 0c50daba071d9593d3169ec5cc01ac6ab00aa590 (patch) | |
tree | eea10b1724d894b2de5cff9ab66ea396a9b0b51f /generic | |
parent | 331737f329d86697442d63ba0f2b4e3395741e1d (diff) | |
download | tcl-0c50daba071d9593d3169ec5cc01ac6ab00aa590.zip tcl-0c50daba071d9593d3169ec5cc01ac6ab00aa590.tar.gz tcl-0c50daba071d9593d3169ec5cc01ac6ab00aa590.tar.bz2 |
* generic/tclObj.c: Added missing space in panic message.
Diffstat (limited to 'generic')
-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"); } } |