diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2005-07-14 12:17:35 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2005-07-14 12:17:35 (GMT) |
commit | a19a73a61633329f5a85bfe4620d80c7e3b1f320 (patch) | |
tree | 1b260cc70b8db7d2889bc428732a13c77bda0d64 /generic/tclCmdIL.c | |
parent | dd7d5fead9c146332cbb1014f3f97ce861ea4645 (diff) | |
download | tcl-a19a73a61633329f5a85bfe4620d80c7e3b1f320.zip tcl-a19a73a61633329f5a85bfe4620d80c7e3b1f320.tar.gz tcl-a19a73a61633329f5a85bfe4620d80c7e3b1f320.tar.bz2 |
Stop warning
Diffstat (limited to 'generic/tclCmdIL.c')
-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; |