summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2005-01-26 11:20:13 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2005-01-26 11:20:13 +0000
commitf07ddacb7d3d7939043d017dbca9fb4fbb2d93b1 (patch)
treec173d648132e8943aff42f5d2bb5545cd378e394 /apps/plugins
parent0ff13c0b0de4eb34cb272041909c441806a93e59 (diff)
downloadrockbox-f07ddacb7d3d7939043d017dbca9fb4fbb2d93b1.tar.gz
rockbox-f07ddacb7d3d7939043d017dbca9fb4fbb2d93b1.zip
Made alpine_cdc.rock compile with DEBUG enabled
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5662 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/alpine_cdc.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/plugins/alpine_cdc.c b/apps/plugins/alpine_cdc.c
index 16ebf3950f..dacc4a7dae 100644
--- a/apps/plugins/alpine_cdc.c
+++ b/apps/plugins/alpine_cdc.c
@@ -1135,7 +1135,9 @@ void exit_tsr(void)
1135int main(void* parameter) 1135int main(void* parameter)
1136{ 1136{
1137 (void)parameter; 1137 (void)parameter;
1138 /*int button; */ 1138#ifdef DEBUG
1139 int button;
1140#endif
1139 int stacksize; 1141 int stacksize;
1140 void* stack; 1142 void* stack;
1141 1143
@@ -1167,7 +1169,7 @@ int main(void* parameter)
1167 do 1169 do
1168 { 1170 {
1169 button = rb->button_get(true); 1171 button = rb->button_get(true);
1170 } while (button & BUTTON_REL)); 1172 } while (button & BUTTON_REL);
1171#endif 1173#endif
1172 1174
1173 gTread.foreground = false; /* we're in the background now */ 1175 gTread.foreground = false; /* we're in the background now */