From 5769e904272409d36c97802ec577967bb96f965a Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Fri, 24 Jun 2005 02:33:14 +0000 Subject: [PATCH] update to current loader API (bug #4574) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5995 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- pbx/pbx_gtkconsole.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pbx/pbx_gtkconsole.c b/pbx/pbx_gtkconsole.c index 62443d29ea..f17667707b 100755 --- a/pbx/pbx_gtkconsole.c +++ b/pbx/pbx_gtkconsole.c @@ -264,7 +264,7 @@ static void add_module(void) gtk_widget_show(filew); } -static int add_mod(char *module, char *description, int usecount) +static int add_mod(const char *module, const char *description, int usecount, const char *like) { char use[10]; char *pass[4]; @@ -288,7 +288,7 @@ static int mod_update(void) } gtk_clist_freeze(GTK_CLIST(modules)); gtk_clist_clear(GTK_CLIST(modules)); - ast_update_module_list(add_mod); + ast_update_module_list(add_mod, NULL); if (module) gtk_clist_select_row(GTK_CLIST(modules), gtk_clist_find_row_from_data(GTK_CLIST(modules), module), -1); gtk_clist_thaw(GTK_CLIST(modules));