Fixed wrong macro usage.

This commit is contained in:
Johny Mattsson 2016-06-03 12:42:03 +10:00
parent a3b9ffe36a
commit b8d9ad16d1
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ static void run_callback (task_param_t arg, task_prio_t prio)
static void alarm_timer_common(void* arg) static void alarm_timer_common(void* arg)
{ {
if (!task_post_medium (callback_task, (task_param_t)arg)) if (!task_post_medium (callback_task, (task_param_t)arg))
NODE_ERROR("ERROR: lost timer callback!"); NODE_ERR("ERROR: lost timer callback!");
} }
// Lua: tmr.delay( us ) // Lua: tmr.delay( us )