diff --git a/src/run_loop_embedded.c b/src/run_loop_embedded.c index 39f764913..8da924f2d 100644 --- a/src/run_loop_embedded.c +++ b/src/run_loop_embedded.c @@ -90,12 +90,14 @@ int embedded_remove_timer(timer_source_t *ts){ } void embedded_dump_timer(){ +#ifndef EMBEDDED linked_item_t *it; int i = 0; for (it = (linked_item_t *) timers; it ; it = it->next){ timer_source_t *ts = (timer_source_t*) it; log_dbg("timer %u, timeout %u\n", i, (unsigned int) ts->timeout.tv_sec); } +#endif } /**