summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--generic/tclCompile.h1
-rw-r--r--generic/tclExecute.c6
-rw-r--r--generic/tclNamesp.c1
3 files changed, 4 insertions, 4 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h
index 6f0e31d..c035a03 100644
--- a/generic/tclCompile.h
+++ b/generic/tclCompile.h
@@ -843,7 +843,6 @@ typedef struct {
int identity;
} i;
} TclOpCmdClientData;
-
/*
*----------------------------------------------------------------
diff --git a/generic/tclExecute.c b/generic/tclExecute.c
index 0a98d95..1928dd1 100644
--- a/generic/tclExecute.c
+++ b/generic/tclExecute.c
@@ -7772,11 +7772,13 @@ TclGetSrcInfoForCmd(
CmdFrame *cfPtr = iPtr->cmdFramePtr;
ByteCode *codePtr;
- if (!cfPtr)
+ if (!cfPtr) {
return NULL;
+ }
codePtr = (ByteCode *) cfPtr->data.tebc.codePtr;
- if (!codePtr || !cfPtr->data.tebc.pc)
+ if (!codePtr || !cfPtr->data.tebc.pc) {
return NULL;
+ }
return GetSrcInfoForPc((unsigned char *) cfPtr->data.tebc.pc,
codePtr, lenPtr);
diff --git a/generic/tclNamesp.c b/generic/tclNamesp.c
index 888f70b..f8b22ab 100644
--- a/generic/tclNamesp.c
+++ b/generic/tclNamesp.c
@@ -25,7 +25,6 @@
*/
#include "tclInt.h"
-#include "tclCompile.h"
/*
* Thread-local storage used to avoid having a global lock on data that is not