diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2005-01-26 11:20:13 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2005-01-26 11:20:13 +0000 |
| commit | f07ddacb7d3d7939043d017dbca9fb4fbb2d93b1 (patch) | |
| tree | c173d648132e8943aff42f5d2bb5545cd378e394 | |
| parent | 0ff13c0b0de4eb34cb272041909c441806a93e59 (diff) | |
| download | rockbox-f07ddacb7d3d7939043d017dbca9fb4fbb2d93b1.zip rockbox-f07ddacb7d3d7939043d017dbca9fb4fbb2d93b1.tar.gz rockbox-f07ddacb7d3d7939043d017dbca9fb4fbb2d93b1.tar.bz2 rockbox-f07ddacb7d3d7939043d017dbca9fb4fbb2d93b1.tar.xz | |
Made alpine_cdc.rock compile with DEBUG enabled
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5662 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/plugins/alpine_cdc.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/plugins/alpine_cdc.c b/apps/plugins/alpine_cdc.c index 16ebf39..dacc4a7 100644 --- a/apps/plugins/alpine_cdc.c +++ b/apps/plugins/alpine_cdc.c @@ -1135,7 +1135,9 @@ void exit_tsr(void) int main(void* parameter) { (void)parameter; - /*int button; */ +#ifdef DEBUG + int button; +#endif int stacksize; void* stack; @@ -1167,7 +1169,7 @@ int main(void* parameter) do { button = rb->button_get(true); - } while (button & BUTTON_REL)); + } while (button & BUTTON_REL); #endif gTread.foreground = false; /* we're in the background now */ |