From d07fa25e04a19ccb9aa25bb6e2156d23d213db77 Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Tue, 28 Nov 2023 20:11:05 +0100 Subject: Meta: Apply new clang-format rules to kernel --- kernel/network/arp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'kernel/network/arp.c') diff --git a/kernel/network/arp.c b/kernel/network/arp.c index baff528..6e589ec 100644 --- a/kernel/network/arp.c +++ b/kernel/network/arp.c @@ -14,10 +14,10 @@ struct ARP_DATA { u16 opcode; // ARP Operation Code u8 srchw[6]; // Source hardware address - hlen bytes (see above) u8 srcpr[4]; // Source protocol address - plen bytes (see above). - // If IPv4 can just be a "u32" type. + // If IPv4 can just be a "u32" type. u8 dsthw[6]; // Destination hardware address - hlen bytes (see above) u8 dstpr[4]; // Destination protocol address - plen bytes (see - // above). If IPv4 can just be a "u32" type. + // above). If IPv4 can just be a "u32" type. }; struct ARP_TABLE_ENTRY { -- cgit v1.2.3