summaryrefslogtreecommitdiff
path: root/apps/filetypes.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/filetypes.c')
-rw-r--r--apps/filetypes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/filetypes.c b/apps/filetypes.c
index 02d2af282e..24dc0f2e4d 100644
--- a/apps/filetypes.c
+++ b/apps/filetypes.c
@@ -618,7 +618,7 @@ int filetype_list_viewers(const char* current_file)
618 int i = viewers[info.selection]; 618 int i = viewers[info.selection];
619 snprintf(plugin, MAX_PATH, "%s/%s." ROCK_EXTENSION, 619 snprintf(plugin, MAX_PATH, "%s/%s." ROCK_EXTENSION,
620 PLUGIN_DIR, filetypes[i].plugin); 620 PLUGIN_DIR, filetypes[i].plugin);
621 plugin_load(plugin, current_file); 621 ret = plugin_load(plugin, current_file);
622 } 622 }
623 return ret; 623 return ret;
624} 624}