diff options
author | patthoyts <patthoyts@users.sourceforge.net> | 2007-11-17 23:07:45 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@users.sourceforge.net> | 2007-11-17 23:07:45 (GMT) |
commit | 564fb4d84402fcf9765bc3e2319aa11e4cdd8030 (patch) | |
tree | 23a7a36869acb014ae54c3af70058f4134ecac67 /generic/tkTextImage.c | |
parent | cd3db4fab4487f93d083f8de89bfe41a4556b090 (diff) | |
download | tk-564fb4d84402fcf9765bc3e2319aa11e4cdd8030.zip tk-564fb4d84402fcf9765bc3e2319aa11e4cdd8030.tar.gz tk-564fb4d84402fcf9765bc3e2319aa11e4cdd8030.tar.bz2 |
Tidy up some variable types.
Diffstat (limited to 'generic/tkTextImage.c')
-rw-r--r-- | generic/tkTextImage.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkTextImage.c b/generic/tkTextImage.c index 5f08da7..d65abc1 100644 --- a/generic/tkTextImage.c +++ b/generic/tkTextImage.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkTextImage.c,v 1.20 2007/09/07 00:34:54 dgp Exp $ + * RCS: @(#) $Id: tkTextImage.c,v 1.21 2007/11/17 23:07:46 patthoyts Exp $ */ #include "tkPort.h" @@ -328,7 +328,7 @@ EmbImageConfigure( char *name; int count = 0; /* The counter for picking a unique name */ int conflict = 0; /* True if we have a name conflict */ - unsigned int len; /* length of image name */ + size_t len; /* length of image name */ if (Tk_SetOptions(textPtr->interp, (char*)&eiPtr->body.ei, eiPtr->body.ei.optionTable, |