diff options
Diffstat (limited to 'apps/plugins')
| -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 */ |