Replace comma with semicolon. Fixes: d4cf078cb71a ("add ukey_* function for key assignation") Signed-off-by: Jeremy Sowden <jeremy@xxxxxxxxxx> --- util/printpkt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/printpkt.c b/util/printpkt.c index b9b47b2f63a0..11126b3c9af7 100644 --- a/util/printpkt.c +++ b/util/printpkt.c @@ -264,7 +264,7 @@ static int printpkt_ipv4(struct ulogd_key *res, char *buf) ikey_get_u32(&res[KEY_ICMP_GATEWAY]) >> 24); break; case ICMP_REDIRECT: - paddr = ikey_get_u32(&res[KEY_ICMP_GATEWAY]), + paddr = ikey_get_u32(&res[KEY_ICMP_GATEWAY]); buf_cur += sprintf(buf_cur, "GATEWAY=%s ", inet_ntop(AF_INET, &paddr, -- 2.40.1