diff options
Diffstat (limited to 'Kernel/Net/IPv4.h')
-rw-r--r-- | Kernel/Net/IPv4.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Net/IPv4.h b/Kernel/Net/IPv4.h index cf9da889ae..704ef1754f 100644 --- a/Kernel/Net/IPv4.h +++ b/Kernel/Net/IPv4.h @@ -102,7 +102,7 @@ private: IPv4Address m_destination; }; -static_assert(sizeof(IPv4Packet) == 20); +static_assert(AssertSize<IPv4Packet, 20>()); inline NetworkOrdered<u16> internet_checksum(const void* ptr, size_t count) { |