diff options
| author | donal.k.fellows@manchester.ac.uk <dkf> | 2005-07-14 12:17:35 (GMT) |
|---|---|---|
| committer | donal.k.fellows@manchester.ac.uk <dkf> | 2005-07-14 12:17:35 (GMT) |
| commit | 1cffe7550ef66308cac61219ea09ac03711fba4a (patch) | |
| tree | 1b260cc70b8db7d2889bc428732a13c77bda0d64 | |
| parent | b69af48130264507aa0a7a0429ff2c477696a20e (diff) | |
| download | tcl-1cffe7550ef66308cac61219ea09ac03711fba4a.zip tcl-1cffe7550ef66308cac61219ea09ac03711fba4a.tar.gz tcl-1cffe7550ef66308cac61219ea09ac03711fba4a.tar.bz2 | |
Stop warning
| -rw-r--r-- | generic/tclCmdIL.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclCmdIL.c b/generic/tclCmdIL.c index 883ed45..31a3749 100644 --- a/generic/tclCmdIL.c +++ b/generic/tclCmdIL.c @@ -16,7 +16,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclCmdIL.c,v 1.76 2005/06/01 11:00:34 dkf Exp $ + * RCS: @(#) $Id: tclCmdIL.c,v 1.77 2005/07/14 12:17:35 dkf Exp $ */ #include "tclInt.h" @@ -796,7 +796,7 @@ InfoCommandsCmd(dummy, interp, objc, objv) return TCL_OK; } if ((nsPtr != globalNsPtr) && !specificNsInPattern) { - Tcl_HashTable *tablePtr; + Tcl_HashTable *tablePtr = NULL; /* Quell warning */ for (i=0 ; i<nsPtr->commandPathLength ; i++) { Namespace *pathNsPtr = nsPtr->commandPathArray[i].nsPtr; |
