summaryrefslogtreecommitdiffstats
path: root/generic/tclTest.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2016-03-04 13:15:08 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2016-03-04 13:15:08 (GMT)
commite85cf6c3a9f9618523d61455efeee1f86680b20e (patch)
tree08684f5a71ff0e8362c7b62b36ad271f4838d119 /generic/tclTest.c
parentaa1d17b6b47506ea8c367f0784747a8bdfc90bee (diff)
downloadtcl-e85cf6c3a9f9618523d61455efeee1f86680b20e.zip
tcl-e85cf6c3a9f9618523d61455efeee1f86680b20e.tar.gz
tcl-e85cf6c3a9f9618523d61455efeee1f86680b20e.tar.bz2
(cherry-pick): Fix gcc 5.3 warning: In function ‘NRInterpCmd’: tclInterp.c:726:5: warning: assuming signed overflow does not occur when assuming that (X + c) < X is always false [-Wstrict-overflow]
if ((i + 2) < objc) { Remove some excessive spacing
Diffstat (limited to 'generic/tclTest.c')
-rw-r--r--generic/tclTest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclTest.c b/generic/tclTest.c
index 9794f59..4695ab5 100644
--- a/generic/tclTest.c
+++ b/generic/tclTest.c
@@ -6891,7 +6891,7 @@ TestNREUnwind(
* Insure that callbacks effectively run at the proper level during the
* unwinding of the NRE stack.
*/
-
+
Tcl_NRAddCallback(interp, NREUnwind_callback, INT2PTR(-1), INT2PTR(-1),
INT2PTR(-1), NULL);
return TCL_OK;