add stderr for dlopen to help find issues

SVN revision: 42480
This commit is contained in:
Carsten Haitzler 2009-09-14 04:20:51 +00:00
parent 7f46b38388
commit ac18afd6a8
1 changed files with 1 additions and 0 deletions

View File

@ -796,6 +796,7 @@ elm_quicklaunch_prepare(int argc, char **argv)
qr_handle = dlopen(exe, RTLD_NOW | RTLD_GLOBAL);
if (!qr_handle)
{
fprintf(stderr, "dlerr: %s\n", dlerror());
WRN("dlopen('%s') failed: %s", exe, dlerror());
free(exe);
return EINA_FALSE;