diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2023-01-28 09:31:52 -0500 |
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2023-01-28 09:31:52 -0500 |
| commit | 403081e12a903787c664959b655e002fc9c49bcf (patch) | |
| tree | 83d55a00ee50eecfdcadf023531aabfd66093a55 /babeld | |
| parent | 1596fa9c2f17a18c2ee3f08d645b504bf7bf6c07 (diff) | |
babeld: The function is already a pointer
Don't send the address of in.
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'babeld')
| -rw-r--r-- | babeld/babeld.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |
