summaryrefslogtreecommitdiffstats
path: root/generic/tkArgv.c
diff options
context:
space:
mode:
authorhobbs <hobbs@noemail.net>2008-04-07 18:38:01 (GMT)
committerhobbs <hobbs@noemail.net>2008-04-07 18:38:01 (GMT)
commitec266c55e19f7125289923df5b41e1a6a3cf0382 (patch)
treea28ba964120621438a5d6f3ae1b1db40ea066119 /generic/tkArgv.c
parent33d729fe8f813338dac8e53cd20ce8165153b4fe (diff)
downloadtk-ec266c55e19f7125289923df5b41e1a6a3cf0382.zip
tk-ec266c55e19f7125289923df5b41e1a6a3cf0382.tar.gz
tk-ec266c55e19f7125289923df5b41e1a6a3cf0382.tar.bz2
* generic/tkArgv.c: fix -help mem explosion. [Bug 1936238] (bachmann)
FossilOrigin-Name: 525fa7f0f3159f761551ff6457d3735b094a05bc
Diffstat (limited to 'generic/tkArgv.c')
-rw-r--r--generic/tkArgv.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/generic/tkArgv.c b/generic/tkArgv.c
index 95991ee..286f348 100644
--- a/generic/tkArgv.c
+++ b/generic/tkArgv.c
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkArgv.c,v 1.11 2007/12/13 15:24:13 dgp Exp $
+ * RCS: @(#) $Id: tkArgv.c,v 1.11.2.1 2008/04/07 18:38:01 hobbs Exp $
*/
#include "tkInt.h"
@@ -337,7 +337,8 @@ PrintUsage(
* for default options. */
{
register Tk_ArgvInfo *infoPtr;
- size_t width, i, numSpaces;
+ size_t width, i;
+ int numSpaces; /* must be int to allow for negative values */
#define NUM_SPACES 20
static char spaces[] = " ";
char tmp[TCL_DOUBLE_SPACE];