diff options
author | dgp <dgp@users.sourceforge.net> | 2002-06-20 00:11:43 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2002-06-20 00:11:43 (GMT) |
commit | 3ed36fbe1365d46b309f5dbc5d4eb93d6ca5c3e7 (patch) | |
tree | 9555026811ac4608aed5e173b98003a41981167c /generic/tclExecute.c | |
parent | dd5ca3e8633f089cd66042b1ea81da55c5679088 (diff) | |
download | tcl-3ed36fbe1365d46b309f5dbc5d4eb93d6ca5c3e7.zip tcl-3ed36fbe1365d46b309f5dbc5d4eb93d6ca5c3e7.tar.gz tcl-3ed36fbe1365d46b309f5dbc5d4eb93d6ca5c3e7.tar.bz2 |
Added parens for clarity
Diffstat (limited to 'generic/tclExecute.c')
-rw-r--r-- | generic/tclExecute.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclExecute.c b/generic/tclExecute.c index bfa83fd..c1a7a2c 100644 --- a/generic/tclExecute.c +++ b/generic/tclExecute.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclExecute.c,v 1.73 2002/06/19 16:28:58 msofer Exp $ + * RCS: @(#) $Id: tclExecute.c,v 1.74 2002/06/20 00:11:43 dgp Exp $ */ #include "tclInt.h" @@ -1331,7 +1331,7 @@ TclExecuteByteCode(interp, codePtr) } else { Command *cmdPtr; cmdPtr = (Command *) Tcl_GetCommandFromObj(interp, objv[0]); - if (cmdPtr != NULL && cmdPtr->flags & CMD_HAS_EXEC_TRACES) { + if ((cmdPtr != NULL) && (cmdPtr->flags & CMD_HAS_EXEC_TRACES)) { bytes = GetSrcInfoForPc(pc, codePtr, &length); } } |