summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Mahone <andrew.mahone@gmail.com>2009-01-19 01:19:02 +0000
committerAndrew Mahone <andrew.mahone@gmail.com>2009-01-19 01:19:02 +0000
commitcef6399c4c3bcaa35733bdab8b9016b66b71a6f0 (patch)
tree887b13d5942a4cfcaa856d833a4525f43ee588d4
parent26c06d165b6b4c33d7c058a5d2e8e39d42a30cbb (diff)
downloadrockbox-cef6399c4c3bcaa35733bdab8b9016b66b71a6f0.tar.gz
rockbox-cef6399c4c3bcaa35733bdab8b9016b66b71a6f0.zip
port test_boost.c to global plugin API
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19796 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/plugins/test_boost.c4
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 @@
23 23
24PLUGIN_HEADER 24PLUGIN_HEADER
25 25
26enum plugin_status plugin_start(const struct plugin_api* api, 26enum plugin_status plugin_start(const void* parameter)
27 const void* parameter)
28{ 27{
29 (void)parameter; 28 (void)parameter;
30 const struct plugin_api* rb = api;
31 bool done = false; 29 bool done = false;
32 bool boost = false; 30 bool boost = false;
33 int count = 0; 31 int count = 0;