summaryrefslogtreecommitdiffstats
path: root/macosx/tkMacOSXInit.c
diff options
context:
space:
mode:
authordas <das@noemail.net>2006-07-20 06:26:44 (GMT)
committerdas <das@noemail.net>2006-07-20 06:26:44 (GMT)
commit96cbbf6d000a3c8f23d20fbd61d9f9a194c0e88e (patch)
treefc8bec9dde27b2592c81f0797a3e93f4a2fdb7de /macosx/tkMacOSXInit.c
parent765820b16df4c0b78d4bcf0515301ebbbd956ff2 (diff)
downloadtk-96cbbf6d000a3c8f23d20fbd61d9f9a194c0e88e.zip
tk-96cbbf6d000a3c8f23d20fbd61d9f9a194c0e88e.tar.gz
tk-96cbbf6d000a3c8f23d20fbd61d9f9a194c0e88e.tar.bz2
* macosx/tkMacOSXCursor.c (TkMacOSXCursor):
* macosx/tkMacOSXDebug.c (TkMacOSXGetNamedDebugSymbol): * macosx/tkMacOSXInit.c (Map): fix signed-with-unsigned comparison and other warnings from gcc4 -Wextra. FossilOrigin-Name: 35e728e04e18675dfafd2e6bcc2df584a58176e1
Diffstat (limited to 'macosx/tkMacOSXInit.c')
-rw-r--r--macosx/tkMacOSXInit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/tkMacOSXInit.c b/macosx/tkMacOSXInit.c
index 312ef65..b14dff9 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.3.2.16 2006/05/12 18:17:55 das Exp $
+ * RCS: @(#) $Id: tkMacOSXInit.c,v 1.3.2.17 2006/07/20 06:26:45 das Exp $
*/
#include "tkMacOSXInt.h"
@@ -45,7 +45,7 @@
*/
typedef struct Map {
- int numKey;
+ CFStringEncoding numKey;
char *strKey;
} Map;