From 403081e12a903787c664959b655e002fc9c49bcf Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Sat, 28 Jan 2023 09:31:52 -0500 Subject: [PATCH] babeld: The function is already a pointer Don't send the address of in. Signed-off-by: Donald Sharp --- babeld/babeld.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/babeld/babeld.c b/babeld/babeld.c index 34e1a4318b..972d52819b 100644 --- a/babeld/babeld.c +++ b/babeld/babeld.c @@ -165,7 +165,7 @@ babel_create_routing_process (void) } /* Threads. */ - thread_add_read(master, &babel_read_protocol, NULL, protocol_socket, &babel_routing_process->t_read); + thread_add_read(master, babel_read_protocol, NULL, protocol_socket, &babel_routing_process->t_read); /* wait a little: zebra will announce interfaces, addresses, routes... */ thread_add_timer_msec(master, babel_init_routing_process, NULL, 200L, &babel_routing_process->t_update);