summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2011-10-15 19:35:02 +0000
committerBjörn Stenberg <bjorn@haxx.se>2011-10-15 19:35:02 +0000
commit0942e2a0f71d809c1d7f2606cbddfa1d4beacb87 (patch)
treece2fbdea468cb8223598c546fee765a10660a0b0 /apps/plugin.c
parentf301ac05f9dd6ace2355fa822bd61d454c2c4f28 (diff)
downloadrockbox-0942e2a0f71d809c1d7f2606cbddfa1d4beacb87.tar.gz
rockbox-0942e2a0f71d809c1d7f2606cbddfa1d4beacb87.zip
Changed the FOR_NB_SCREENS macro to always be a for loop that declares its own loop variable. This removes the need to declare this variable in the outer scope.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30756 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 7c75a43080..8037dab29a 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -809,7 +809,6 @@ static const struct plugin_api rockbox_api = {
809 809
810int plugin_load(const char* plugin, const void* parameter) 810int plugin_load(const char* plugin, const void* parameter)
811{ 811{
812 int rc, i;
813 struct plugin_header *p_hdr; 812 struct plugin_header *p_hdr;
814 struct lc_header *hdr; 813 struct lc_header *hdr;
815 814
@@ -889,7 +888,7 @@ int plugin_load(const char* plugin, const void* parameter)
889 open_files = 0; 888 open_files = 0;
890#endif 889#endif
891 890
892 rc = p_hdr->entry_point(parameter); 891 int rc = p_hdr->entry_point(parameter);
893 892
894 tree_unlock_cache(tree_get_context()); 893 tree_unlock_cache(tree_get_context());
895 pop_current_activity(); 894 pop_current_activity();