mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 08:38:12 +00:00
Kernel: Some more int => size_t in NetworkAdapter and subclasses
This commit is contained in:
parent
1e948f1766
commit
164d9ecad7
8 changed files with 13 additions and 13 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue