summaryrefslogtreecommitdiffstats
path: root/unix/tkUnixFont.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2002-06-26 23:02:45 (GMT)
committerdgp <dgp@users.sourceforge.net>2002-06-26 23:02:45 (GMT)
commit5c3e66b300c55520a28cff51ef98c85790bc1da5 (patch)
tree793385b225e79cd6c7fb6401d2b843567659806c /unix/tkUnixFont.c
parent590a81565ed929e914043dd10affaa90b87e8e17 (diff)
downloadtk-5c3e66b300c55520a28cff51ef98c85790bc1da5.zip
tk-5c3e66b300c55520a28cff51ef98c85790bc1da5.tar.gz
tk-5c3e66b300c55520a28cff51ef98c85790bc1da5.tar.bz2
* (Tk_DrawChars) silence compiler warning.
Diffstat (limited to 'unix/tkUnixFont.c')
-rw-r--r--unix/tkUnixFont.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/unix/tkUnixFont.c b/unix/tkUnixFont.c
index 9bfeef6..2c39433 100644
--- a/unix/tkUnixFont.c
+++ b/unix/tkUnixFont.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: tkUnixFont.c,v 1.13 2002/06/05 22:11:09 a_kovalenko Exp $
+ * RCS: @(#) $Id: tkUnixFont.c,v 1.14 2002/06/26 23:02:45 dgp Exp $
*/
#include "tkUnixInt.h"
@@ -1158,7 +1158,8 @@ Tk_DrawChars(display, drawable, gc, tkfont, source, numBytes, x, y)
int xStart, needWidth, window_width;
Tcl_UniChar ch;
FontFamily *familyPtr;
- int rx, ry, width, height, border_width, depth;
+ int rx, ry;
+ unsigned int width, height, border_width, depth;
int do_width;
Drawable root;