mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-01 13:49:16 +00:00
Kernel: Some more int => size_t in NetworkAdapter and subclasses
This commit is contained in:
parent
1e948f1766
commit
164d9ecad7
Notes:
sideshowbarker
2024-07-19 09:45:01 +09:00
Author: https://github.com/awesomekling
Commit: 164d9ecad7
8 changed files with 13 additions and 13 deletions
|
@ -81,8 +81,8 @@ protected:
|
|||
NetworkAdapter();
|
||||
void set_interface_name(const StringView& basename);
|
||||
void set_mac_address(const MACAddress& mac_address) { m_mac_address = mac_address; }
|
||||
virtual void send_raw(const u8*, int) = 0;
|
||||
void did_receive(const u8*, int);
|
||||
virtual void send_raw(const u8*, size_t) = 0;
|
||||
void did_receive(const u8*, size_t);
|
||||
|
||||
private:
|
||||
MACAddress m_mac_address;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue