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)
commit59cd185389899d1a0c9ac1c1eee90a23cae887e2 (patch)
tree08684f5a71ff0e8362c7b62b36ad271f4838d119 /generic/tclTest.c
parentb918dbb354ee3c3ed92052d1d13d7656dce925ea (diff)
downloadtcl-59cd185389899d1a0c9ac1c1eee90a23cae887e2.zip
tcl-59cd185389899d1a0c9ac1c1eee90a23cae887e2.tar.gz
tcl-59cd185389899d1a0c9ac1c1eee90a23cae887e2.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;