summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2016-12-02 14:17:40 (GMT)
committerdgp <dgp@users.sourceforge.net>2016-12-02 14:17:40 (GMT)
commit4aef72d96f162e986fa3e97acebddb67ed6d2905 (patch)
treefca609e449ed84d6b1c1f14e9252cad2334faf81
parentc2bdc4b2cd9397fb0bc2f3c05bde3ba7587b8625 (diff)
downloadtcl-4aef72d96f162e986fa3e97acebddb67ed6d2905.zip
tcl-4aef72d96f162e986fa3e97acebddb67ed6d2905.tar.gz
tcl-4aef72d96f162e986fa3e97acebddb67ed6d2905.tar.bz2
Repair what appears to be a stray edit error. This restores ability to
build on a TCL_WIDE_INT_IS_LONG platform, but leaves code in tclStringObj.c raising compiler warnings. Suspect things still need some reconciliation in the TCL_WIDE_INT_IS_LONG scenario.
-rw-r--r--generic/tcl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tcl.h b/generic/tcl.h
index 0ddf52a..2cf4472 100644
--- a/generic/tcl.h
+++ b/generic/tcl.h
@@ -417,7 +417,7 @@ typedef long LONG;
#endif /* !TCL_WIDE_INT_TYPE & !TCL_WIDE_INT_IS_LONG */
#ifdef TCL_WIDE_INT_IS_LONG
# undef TCL_WIDE_INT_TYPE
-# define cd long long
+# define TCL_WIDE_INT_TYPE long
#endif /* TCL_WIDE_INT_IS_LONG */
typedef TCL_WIDE_INT_TYPE Tcl_WideInt;