Skip to content

Commit

Permalink
Address linter concern
Browse files Browse the repository at this point in the history
  • Loading branch information
hamishcoleman committed Apr 30, 2024
1 parent 3ffff72 commit 057c8b5
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/management.c
Original file line number Diff line number Diff line change
Expand Up @@ -427,15 +427,15 @@ static void jsonrpc_get_mac (char *id, struct n3n_runtime_data *eee, conn_t *con

macstr_t mac_buf;
sb_reprintf(&conn->request,
"{"
"\"_type\":\"assoc\","
"\"mac\":\"%s\","
"\"dest\":\"%s:%s\","
"\"last_seen\":\"%u\"},",
macaddr_str(mac_buf, assoc->mac),
buf,
port,
(uint32_t)assoc->last_seen
"{"
"\"_type\":\"assoc\","
"\"mac\":\"%s\","
"\"dest\":\"%s:%s\","
"\"last_seen\":\"%u\"},",
macaddr_str(mac_buf, assoc->mac),
buf,
port,
(uint32_t)assoc->last_seen
);
}
}
Expand Down

0 comments on commit 057c8b5

Please sign in to comment.