summaryrefslogtreecommitdiff
path: root/apps/plugins/plasma.c
diff options
context:
space:
mode:
authorAndree Buschmann <AndreeBuschmann@t-online.de>2011-05-03 20:28:56 +0000
committerAndree Buschmann <AndreeBuschmann@t-online.de>2011-05-03 20:28:56 +0000
commitf19d6a5e1d53feedf76a7edd7756386d9e52339b (patch)
tree152203f61b56c9896c53e867b2961cc018ca4ce5 /apps/plugins/plasma.c
parentbefabb2bab2736667d681c192bf4cb51b3aca032 (diff)
downloadrockbox-f19d6a5e1d53feedf76a7edd7756386d9e52339b.tar.gz
rockbox-f19d6a5e1d53feedf76a7edd7756386d9e52339b.zip
Fix even more 'variable set but not used' warnings reported from GCC 4.6.0.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29819 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/plasma.c')
-rw-r--r--apps/plugins/plasma.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/plasma.c b/apps/plugins/plasma.c
index 4359e6e8b6..e824593850 100644
--- a/apps/plugins/plasma.c
+++ b/apps/plugins/plasma.c
@@ -155,8 +155,8 @@ int main(void)
155 plasma_frequency = 1; 155 plasma_frequency = 1;
156 int action, x, y; 156 int action, x, y;
157 unsigned char p1,p2,p3,p4,t1,t2,t3,t4, z,z0; 157 unsigned char p1,p2,p3,p4,t1,t2,t3,t4, z,z0;
158 long last_tick = *rb->current_tick;
159#ifdef HAVE_ADJUSTABLE_CPU_FREQ 158#ifdef HAVE_ADJUSTABLE_CPU_FREQ
159 long last_tick = *rb->current_tick;
160 int delay; 160 int delay;
161 int cumulated_lag = 0; 161 int cumulated_lag = 0;
162#endif 162#endif
@@ -257,10 +257,10 @@ int main(void)
257 if (--cumulated_lag <= 0) /* slow decrease */ 257 if (--cumulated_lag <= 0) /* slow decrease */
258 rb->cpu_boost(boosted = false); 258 rb->cpu_boost(boosted = false);
259 } 259 }
260 last_tick = *rb->current_tick;
260#endif 261#endif
261 action = pluginlib_getaction(0, plugin_contexts, 262 action = pluginlib_getaction(0, plugin_contexts,
262 ARRAYLEN(plugin_contexts)); 263 ARRAYLEN(plugin_contexts));
263 last_tick = *rb->current_tick;
264 264
265 switch(action) 265 switch(action)
266 { 266 {