summaryrefslogtreecommitdiffstats
path: root/generic/tclBinary.c
diff options
context:
space:
mode:
authornijtmans <nijtmans>2010-11-19 10:17:22 (GMT)
committernijtmans <nijtmans>2010-11-19 10:17:22 (GMT)
commit6c6dc92ee5bcd102d4baf1a4fefcf27d18871b22 (patch)
tree1edaa6f12a08b479fbf08861a90dbb70772ab7f6 /generic/tclBinary.c
parentb5934db8a3f647cc07e6c0119e3229044b431f3c (diff)
downloadtcl-6c6dc92ee5bcd102d4baf1a4fefcf27d18871b22.zip
tcl-6c6dc92ee5bcd102d4baf1a4fefcf27d18871b22.tar.gz
tcl-6c6dc92ee5bcd102d4baf1a4fefcf27d18871b22.tar.bz2
Tcl_Panic already writes a newline at the end, so the caller doesn't have to do that
Diffstat (limited to 'generic/tclBinary.c')
-rw-r--r--generic/tclBinary.c4
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)