diff options
author | das <das> | 2006-07-20 06:24:16 (GMT) |
---|---|---|
committer | das <das> | 2006-07-20 06:24:16 (GMT) |
commit | 516d2a2413bfa3330b641f88c3a940a54f790a60 (patch) | |
tree | 956bfb461f8842d898de94327db9578248dbf9cf /macosx/tkMacOSXInit.c | |
parent | bdce7878d48dd817db9215c36c9c4794740d4bfb (diff) | |
download | tk-516d2a2413bfa3330b641f88c3a940a54f790a60.zip tk-516d2a2413bfa3330b641f88c3a940a54f790a60.tar.gz tk-516d2a2413bfa3330b641f88c3a940a54f790a60.tar.bz2 |
* generic/tkImgGIF.c (ReadImage):
* macosx/tkMacOSXCursor.c (TkMacOSXCursor):
* macosx/tkMacOSXDebug.c (TkMacOSXGetNamedDebugSymbol):
* macosx/tkMacOSXInit.c (Map):
* xlib/xgc.c (XCreateGC): fix signed-with-unsigned comparison and other
warnings from gcc4 -Wextra.
Diffstat (limited to 'macosx/tkMacOSXInit.c')
-rw-r--r-- | macosx/tkMacOSXInit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/tkMacOSXInit.c b/macosx/tkMacOSXInit.c index e12a56e..a0c2de9 100644 --- a/macosx/tkMacOSXInit.c +++ b/macosx/tkMacOSXInit.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: tkMacOSXInit.c,v 1.21 2006/05/12 18:17:48 das Exp $ + * RCS: @(#) $Id: tkMacOSXInit.c,v 1.22 2006/07/20 06:24:16 das Exp $ */ #include "tkMacOSXInt.h" @@ -45,7 +45,7 @@ */ typedef struct Map { - int numKey; + CFStringEncoding numKey; char *strKey; } Map; |