diff options
author | patthoyts <patthoyts@noemail.net> | 2007-11-17 23:07:44 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@noemail.net> | 2007-11-17 23:07:44 (GMT) |
commit | f3846d34ad3f7fc63ce77987947d1a26ec1e4751 (patch) | |
tree | 23a7a36869acb014ae54c3af70058f4134ecac67 /generic/tkVisual.c | |
parent | 0020f03939052398207f5f12835d34ff47087def (diff) | |
download | tk-f3846d34ad3f7fc63ce77987947d1a26ec1e4751.zip tk-f3846d34ad3f7fc63ce77987947d1a26ec1e4751.tar.gz tk-f3846d34ad3f7fc63ce77987947d1a26ec1e4751.tar.bz2 |
Tidy up some variable types.
FossilOrigin-Name: dd028db17b62cc6010a55648c13919b524417c04
Diffstat (limited to 'generic/tkVisual.c')
-rw-r--r-- | generic/tkVisual.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/generic/tkVisual.c b/generic/tkVisual.c index 7c79ea2..d34b548 100644 --- a/generic/tkVisual.c +++ b/generic/tkVisual.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkVisual.c,v 1.8 2007/09/07 00:34:54 dgp Exp $ + * RCS: @(#) $Id: tkVisual.c,v 1.9 2007/11/17 23:07:46 patthoyts Exp $ */ #include "tkInt.h" @@ -101,7 +101,8 @@ Tk_GetVisual( XVisualInfo template, *visInfoList, *bestPtr; long mask; Visual *visual; - int length, c, numVisuals, prio, bestPrio, i; + ptrdiff_t length; + int c, numVisuals, prio, bestPrio, i; CONST char *p; VisualDictionary *dictPtr; TkColormap *cmapPtr; |