From bcfc6f0c57f9d4ce4343cbb6ee0f0ab8de56c789 Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Fri, 2 Oct 2020 22:14:37 +0100 Subject: Everywhere: Fix more typos --- Kernel/Net/RTL8139NetworkAdapter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Kernel/Net') diff --git a/Kernel/Net/RTL8139NetworkAdapter.cpp b/Kernel/Net/RTL8139NetworkAdapter.cpp index 7d749fe11f..efb26fdb92 100644 --- a/Kernel/Net/RTL8139NetworkAdapter.cpp +++ b/Kernel/Net/RTL8139NetworkAdapter.cpp @@ -359,7 +359,7 @@ void RTL8139NetworkAdapter::receive() // we never have to worry about the packet wrapping around the buffer, // since we set RXCFG_WRAP_INHIBIT, which allows the rtl8139 to write data - // past the end of the alloted space. + // past the end of the allotted space. memcpy(m_packet_buffer->vaddr().as_ptr(), (const u8*)(start_of_packet + 4), length - 4); // let the card know that we've read this data m_rx_buffer_offset = ((m_rx_buffer_offset + length + 4 + 3) & ~3) % RX_BUFFER_SIZE; -- cgit v1.2.3