o, bugger. Forgot to remove some debug statements.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@5789 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Bill Gribble
2001-11-07 22:42:56 +00:00
parent 4069b315f9
commit c8ab2d7a8f
-2
View File
@@ -242,7 +242,6 @@ GNCModuleInfo *
gnc_module_get_info(const char * fullpath)
{
lt_dlhandle handle;
printf("gnc-module: (init) lt_dlopen '%s'\n", fullpath);
handle = lt_dlopen(fullpath);
if(handle)
@@ -443,7 +442,6 @@ gnc_module_load(char * module_name, gint interface)
GNCModuleInfo * modinfo = gnc_module_locate(module_name, interface);
lt_dlhandle handle = NULL;
printf("gnc-module: (load) dlopen '%s'\n", modinfo->module_filepath);
if(modinfo && ((handle = lt_dlopen(modinfo->module_filepath)) != NULL))
{
lt_ptr initfunc = lt_dlsym(handle, "gnc_module_init");