diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-03-04 13:13:21 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-03-04 13:13:21 (GMT) |
commit | 90dc157b45fda2c7a421f44e805218830c6f27ef (patch) | |
tree | 49e6a114565dafad83112c3679796c4a184f7f55 /generic/tclTest.c | |
parent | 14ed75f370cd191162041f91fa4905e7ff6b4944 (diff) | |
download | tcl-90dc157b45fda2c7a421f44e805218830c6f27ef.zip tcl-90dc157b45fda2c7a421f44e805218830c6f27ef.tar.gz tcl-90dc157b45fda2c7a421f44e805218830c6f27ef.tar.bz2 |
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.c | 2 |
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; |