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)
commitc4e63fa109005beab9691b9b5d18e71ae5582f58 (patch)
treefca609e449ed84d6b1c1f14e9252cad2334faf81
parentef88cbd89eaf2dcd04d67c78af3183313b78eecb (diff)
downloadtcl-c4e63fa109005beab9691b9b5d18e71ae5582f58.zip
tcl-c4e63fa109005beab9691b9b5d18e71ae5582f58.tar.gz
tcl-c4e63fa109005beab9691b9b5d18e71ae5582f58.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;