diff options
author | nijtmans <nijtmans@noemail.net> | 2010-11-19 10:17:22 (GMT) |
---|---|---|
committer | nijtmans <nijtmans@noemail.net> | 2010-11-19 10:17:22 (GMT) |
commit | 443c2956811f99f4bc99d4b649dc26d7745d7318 (patch) | |
tree | 1edaa6f12a08b479fbf08861a90dbb70772ab7f6 | |
parent | bca1f8635950ba9fab00eb1acb9c24bc36afc1bb (diff) | |
download | tcl-443c2956811f99f4bc99d4b649dc26d7745d7318.zip tcl-443c2956811f99f4bc99d4b649dc26d7745d7318.tar.gz tcl-443c2956811f99f4bc99d4b649dc26d7745d7318.tar.bz2 |
Tcl_Panic already writes a newline at the end, so the caller doesn't have to do that
FossilOrigin-Name: 28943030748f1725935e62e0357f7fde27ff29c9
-rw-r--r-- | generic/tclBinary.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclBinary.c b/generic/tclBinary.c index de2d319..b40e109 100644 --- a/generic/tclBinary.c +++ b/generic/tclBinary.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclBinary.c,v 1.66 2010/09/15 22:12:00 dkf Exp $ + * RCS: @(#) $Id: tclBinary.c,v 1.67 2010/11/19 10:17:22 nijtmans Exp $ */ #include "tclInt.h" @@ -2454,7 +2454,7 @@ BinaryDecodeHex( } \ } \ if (cursor > limit) { \ - Tcl_Panic("limit hit\n"); \ + Tcl_Panic("limit hit"); \ } \ } while (0) |