summaryrefslogtreecommitdiffstats
path: root/generic/tkGrid.c
diff options
context:
space:
mode:
authorhobbs <hobbs>2004-03-16 19:53:28 (GMT)
committerhobbs <hobbs>2004-03-16 19:53:28 (GMT)
commitbe4abaa074c9689b492972c9c5368a43ee6414eb (patch)
treee0e73ef68ae8891177cedb81ecb2f5baac86a7b5 /generic/tkGrid.c
parent7988add1d4c5a53999db1b98d2623be5a1addbb1 (diff)
downloadtk-be4abaa074c9689b492972c9c5368a43ee6414eb.zip
tk-be4abaa074c9689b492972c9c5368a43ee6414eb.tar.gz
tk-be4abaa074c9689b492972c9c5368a43ee6414eb.tar.bz2
fix lint warnings
Diffstat (limited to 'generic/tkGrid.c')
-rw-r--r--generic/tkGrid.c3
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) {