diff options
author | Andrew Mahone <andrew.mahone@gmail.com> | 2009-01-19 01:19:02 +0000 |
---|---|---|
committer | Andrew Mahone <andrew.mahone@gmail.com> | 2009-01-19 01:19:02 +0000 |
commit | cef6399c4c3bcaa35733bdab8b9016b66b71a6f0 (patch) | |
tree | 887b13d5942a4cfcaa856d833a4525f43ee588d4 /apps | |
parent | 26c06d165b6b4c33d7c058a5d2e8e39d42a30cbb (diff) |
port test_boost.c to global plugin API
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19796 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r-- | apps/plugins/test_boost.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/apps/plugins/test_boost.c b/apps/plugins/test_boost.c index f235e78026..40a22f8382 100644 --- a/apps/plugins/test_boost.c +++ b/apps/plugins/test_boost.c @@ -23,11 +23,9 @@ PLUGIN_HEADER -enum plugin_status plugin_start(const struct plugin_api* api, - const void* parameter) +enum plugin_status plugin_start(const void* parameter) { (void)parameter; - const struct plugin_api* rb = api; bool done = false; bool boost = false; int count = 0; |