Kernel: Some more int => size_t in NetworkAdapter and subclasses

This commit is contained in:
Andreas Kling 2020-01-29 18:29:04 +01:00
commit 164d9ecad7
Notes: sideshowbarker 2024-07-19 09:45:01 +09:00
8 changed files with 13 additions and 13 deletions

View file

@ -44,7 +44,7 @@ LoopbackAdapter::~LoopbackAdapter()
{
}
void LoopbackAdapter::send_raw(const u8* data, int size)
void LoopbackAdapter::send_raw(const u8* data, size_t size)
{
dbgprintf("LoopbackAdapter: Sending %d byte(s) to myself.\n", size);
did_receive(data, size);