summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgriffin <briang42@easystreet.net>2022-08-31 23:41:13 (GMT)
committergriffin <briang42@easystreet.net>2022-08-31 23:41:13 (GMT)
commit7fda2c560ac829fc808182cfc2f71bed71ebb4df (patch)
tree693d08e7a5b0a1a53ca2707beb5324ec5ae1c512
parent1e381fd90df4a9962fbb81c1d3709a03b7e6fda8 (diff)
downloadtcl-7fda2c560ac829fc808182cfc2f71bed71ebb4df.zip
tcl-7fda2c560ac829fc808182cfc2f71bed71ebb4df.tar.gz
tcl-7fda2c560ac829fc808182cfc2f71bed71ebb4df.tar.bz2
Fix build issues.
-rwxr-xr-x[-rw-r--r--]generic/tclArithSeries.c3
-rw-r--r--generic/tclCmdIL.c1
-rw-r--r--win/Makefile.in1
3 files changed, 3 insertions, 2 deletions
diff --git a/generic/tclArithSeries.c b/generic/tclArithSeries.c
index ae9299a..3bb1593 100644..100755
--- a/generic/tclArithSeries.c
+++ b/generic/tclArithSeries.c
@@ -10,10 +10,9 @@
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*/
-#include <assert.h>
-#include "tcl.h"
#include "tclInt.h"
#include "tclArithSeries.h"
+#include <assert.h>
/* -------------------------- ArithSeries object ---------------------------- */
diff --git a/generic/tclCmdIL.c b/generic/tclCmdIL.c
index fa8d1a5..9430eb5 100644
--- a/generic/tclCmdIL.c
+++ b/generic/tclCmdIL.c
@@ -4414,6 +4414,7 @@ Tcl_LseqObjCmd(
/* All other argument errors */
default:
Tcl_WrongNumArgs(interp, 1, objv, "n ??op? n ??by? n??");
+ status = TCL_ERROR;
goto done;
break;
}
diff --git a/win/Makefile.in b/win/Makefile.in
index 4e14ddc..7b9440e 100644
--- a/win/Makefile.in
+++ b/win/Makefile.in
@@ -278,6 +278,7 @@ GENERIC_OBJS = \
regfree.$(OBJEXT) \
regerror.$(OBJEXT) \
tclAlloc.$(OBJEXT) \
+ tclArithSeries.$(OBJEXT) \
tclAssembly.$(OBJEXT) \
tclAsync.$(OBJEXT) \
tclBasic.$(OBJEXT) \