diff options
author | hobbs <hobbs@noemail.net> | 2004-03-16 19:53:28 (GMT) |
---|---|---|
committer | hobbs <hobbs@noemail.net> | 2004-03-16 19:53:28 (GMT) |
commit | 80f4deb8bcecfdbbfe9520c3b2bb945d4f3d534c (patch) | |
tree | e0e73ef68ae8891177cedb81ecb2f5baac86a7b5 /generic | |
parent | 11c9006c35b339184a263ef83fdc6d61ed8a123c (diff) | |
download | tk-80f4deb8bcecfdbbfe9520c3b2bb945d4f3d534c.zip tk-80f4deb8bcecfdbbfe9520c3b2bb945d4f3d534c.tar.gz tk-80f4deb8bcecfdbbfe9520c3b2bb945d4f3d534c.tar.bz2 |
fix lint warnings
FossilOrigin-Name: e208e3fd95fb510161e2f387b539e5eb5cce7a31
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tkGrid.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tkGrid.c b/generic/tkGrid.c index 2c90d2b..cb2f310 100644 --- a/generic/tkGrid.c +++ b/generic/tkGrid.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkGrid.c,v 1.32 2004/02/18 21:25:41 pspjuth Exp $ + * RCS: @(#) $Id: tkGrid.c,v 1.33 2004/03/16 19:53:28 hobbs Exp $ */ #include "tkInt.h" @@ -952,6 +952,7 @@ GridRowColumnConfigureCommand(tkwin, interp, objc, objv) string = Tcl_GetString(objv[1]); masterPtr = GetGrid(master); slotType = (*string == 'c') ? COLUMN : ROW; + first = last = 0; /* lint */ if ((objc == 4) || (objc == 5)) { if (lObjc != 1) { |