diff options
author | hobbs <hobbs> | 2004-03-16 19:52:52 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2004-03-16 19:52:52 (GMT) |
commit | 7988add1d4c5a53999db1b98d2623be5a1addbb1 (patch) | |
tree | 2565920b23593ae66e2118e3e8914d6c2bce46bb /generic/tkTextImage.c | |
parent | f7eb5dd0242ff7912014727b8d21e33f69831bba (diff) | |
download | tk-7988add1d4c5a53999db1b98d2623be5a1addbb1.zip tk-7988add1d4c5a53999db1b98d2623be5a1addbb1.tar.gz tk-7988add1d4c5a53999db1b98d2623be5a1addbb1.tar.bz2 |
fix cast warnings
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 50e86be..87cdb2e 100644 --- a/generic/tkTextImage.c +++ b/generic/tkTextImage.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: tkTextImage.c,v 1.12 2004/01/13 02:06:00 davygrvy Exp $ + * RCS: @(#) $Id: tkTextImage.c,v 1.13 2004/03/16 19:53:09 hobbs Exp $ */ #include "tk.h" @@ -391,7 +391,7 @@ EmbImageConfigure(textPtr, eiPtr, objc, objv) if (new > count) { count = new; } - if (len == (int) strlen(haveName)) { + if (len == strlen(haveName)) { conflict = 1; } } |