It seems to me that the dlerror here is not useful, so this replaces the (null) that always seems to be printed

SVN revision: 19418
This commit is contained in:
handyande 2005-12-30 12:49:45 +00:00 committed by handyande
parent 50a9bbe250
commit 63ccd7f154
1 changed files with 2 additions and 2 deletions

View File

@ -150,8 +150,8 @@ e_module_new(char *name)
"The full path to this module is:<br>"
"%s<br>"
"The error reported was:<br>"
"%s<br>"),
name, buf, dlerror());
"Module does not contain all needed functions<br>"),
name, buf);
_e_module_dialog_disable_show(_("Error loading Module"), body, m);
m->api = NULL;
m->func.init = NULL;