diff options
Diffstat (limited to 'tests/helpers/c/main.c')
-rw-r--r-- | tests/helpers/c/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/helpers/c/main.c b/tests/helpers/c/main.c index ae089398e..937a44520 100644 --- a/tests/helpers/c/main.c +++ b/tests/helpers/c/main.c @@ -38,12 +38,12 @@ static void test_timer(struct event *thread) int *count = THREAD_ARG(thread); printf("run %d of timer\n", (*count)++); - thread_add_timer(master, test_timer, count, 5, NULL); + event_add_timer(master, test_timer, count, 5, NULL); } static void test_timer_init(void) { - thread_add_timer(master, test_timer, &timer_count, 10, NULL); + event_add_timer(master, test_timer, &timer_count, 10, NULL); } static void test_vty_init(void) |