diff options
Diffstat (limited to 'reader.c')
-rw-r--r-- | reader.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -21,7 +21,7 @@ int reader_init(){ reader_module = dlopen(plugin, RTLD_NOW); if(!reader_module){ - printf("Failed to load reader plugin %s\n", plugin); + printf("Failed to load reader plugin %s: %s\n", plugin, dlerror()); return -1; } |