From: <ebl...@us...> - 2006-07-11 16:11:37
|
Revision: 16485 Author: eblanton Date: 2006-07-11 09:11:30 -0700 (Tue, 11 Jul 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16485&view=rev Log Message: ----------- Fix a 64-bit casting problem in tcl_glib Modified Paths: -------------- trunk/plugins/tcl/tcl_glib.c Modified: trunk/plugins/tcl/tcl_glib.c =================================================================== --- trunk/plugins/tcl/tcl_glib.c 2006-07-11 06:54:27 UTC (rev 16484) +++ trunk/plugins/tcl/tcl_glib.c 2006-07-11 16:11:30 UTC (rev 16485) @@ -183,7 +183,7 @@ static void tcl_delete_file_handler(int fd) { - struct tcl_file_handler *tfh = g_hash_table_lookup(tcl_file_handlers, (gpointer)fd); + struct tcl_file_handler *tfh = g_hash_table_lookup(tcl_file_handlers, GINT_TO_POINTER(fd)); if (tfh == NULL) return; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |