Skip to content

Commit

Permalink
Address lint line length complaint
Browse files Browse the repository at this point in the history
  • Loading branch information
cmfitch1 committed Jul 30, 2024
1 parent 3dfe7dd commit c4b71d3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/udp/mcast.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ static int multicast_update(struct udp_sock *us, const struct sa *group,

if (local && !sa_is_any(local)) {
char name[64];
if (net_if_getname(name, sizeof(name), sa_af(local), local) != 0)
if (net_if_getname(name, sizeof(name), sa_af(local),
local) != 0)
return EADDRNOTAVAIL;

if ((if_index = if_nametoindex(name)) == 0)
Expand Down

0 comments on commit c4b71d3

Please sign in to comment.