comparison src/plugins.c @ 2150:eb2cadb18479

[gaim-migrate @ 2160] wee committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Mon, 20 Aug 2001 20:39:29 +0000
parents 66a84ff0445a
children 0b5c3338fa3d
comparison
equal deleted inserted replaced
2149:42e8e44f5c40 2150:eb2cadb18479
466 { 466 {
467 unload_for_real(handle); 467 unload_for_real(handle);
468 g_module_close(handle); 468 g_module_close(handle);
469 } 469 }
470 470
471 static gint unload_timeout(GModule *handle) 471 static gboolean unload_timeout(gpointer handle)
472 { 472 {
473 g_module_close(handle); 473 g_module_close(handle);
474 return FALSE; 474 return FALSE;
475 } 475 }
476 476