1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:08:11 +00:00

Kernel: Fix build with E1000_DEBUG

This commit is contained in:
Andreas Kling 2020-12-25 19:35:43 +01:00
parent ed5c26d698
commit 057c1d4798

View file

@ -458,7 +458,7 @@ void E1000NetworkAdapter::send_raw(ReadonlyBytes payload)
m_wait_queue.wait_on(nullptr, "E1000NetworkAdapter");
}
#ifdef E1000_DEBUG
dbgln("E1000: Sent packet, status is now {:#02x}!", descriptor.status);
dbgln("E1000: Sent packet, status is now {:#02x}!", (u8)descriptor.status);
#endif
}