summaryrefslogtreecommitdiff
path: root/apps/plugins/properties.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/properties.c')
-rw-r--r--apps/plugins/properties.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/properties.c b/apps/plugins/properties.c
index 079161a514..3b4f2797af 100644
--- a/apps/plugins/properties.c
+++ b/apps/plugins/properties.c
@@ -299,7 +299,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* file)
299 if(!found) 299 if(!found)
300 { 300 {
301 /* weird: we couldn't find the entry. This Should Never Happen (TM) */ 301 /* weird: we couldn't find the entry. This Should Never Happen (TM) */
302 rb->splash(0, "File/Dir not found: %s", (char*)file); 302 rb->splash(0, "File/Dir not found: %s", (char*)file);
303 rb->action_userabort(TIMEOUT_BLOCK); 303 rb->action_userabort(TIMEOUT_BLOCK);
304 return PLUGIN_OK; 304 return PLUGIN_OK;
305 } 305 }
@@ -308,7 +308,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* file)
308 if(!(its_a_dir ? dir_properties((char*)file):file_properties((char*)file))) 308 if(!(its_a_dir ? dir_properties((char*)file):file_properties((char*)file)))
309 { 309 {
310 /* something went wrong (to do: tell user what it was (nesting,...) */ 310 /* something went wrong (to do: tell user what it was (nesting,...) */
311 rb->splash(0, "Failed to gather information"); 311 rb->splash(0, "Failed to gather information");
312 rb->action_userabort(TIMEOUT_BLOCK); 312 rb->action_userabort(TIMEOUT_BLOCK);
313 return PLUGIN_OK; 313 return PLUGIN_OK;
314 } 314 }