summaryrefslogtreecommitdiffstats
path: root/generic/tclBasic.c
diff options
context:
space:
mode:
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r--generic/tclBasic.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c
index 16cc531..7f8d68c 100644
--- a/generic/tclBasic.c
+++ b/generic/tclBasic.c
@@ -2795,7 +2795,7 @@ Tcl_CreateObjCommand(
/* If not NULL, gives a function to call when
* this command is deleted. */
{
- Interp *iPtr = (Interp *) interp;
+ Interp *iPtr = (Interp *)interp;
Namespace *nsPtr;
const char *tail;
@@ -2804,7 +2804,7 @@ Tcl_CreateObjCommand(
* The interpreter is being deleted. Don't create any new commands;
* it's not safe to muck with the interpreter anymore.
*/
- return (Tcl_Command) NULL;
+ return NULL;
}
/*