summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 24a9dd4da6..af6770213d 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -299,7 +299,7 @@ int plugin_load(const char* plugin, void* parameter)
299 299
300 pd = dlopen(path, RTLD_NOW); 300 pd = dlopen(path, RTLD_NOW);
301 if (!pd) { 301 if (!pd) {
302 snprintf(buf, sizeof buf, "Can't open %s", plugin); 302 snprintf(buf, sizeof buf, str(LANG_PLUGIN_CANT_OPEN), plugin);
303 splash(HZ*2, true, buf); 303 splash(HZ*2, true, buf);
304 DEBUGF("dlopen(%s): %s\n",path,dlerror()); 304 DEBUGF("dlopen(%s): %s\n",path,dlerror());
305 dlclose(pd); 305 dlclose(pd);