mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 01:32:14 -05:00
Kernel: Fix code locked behind NETWORK_TASK_DEBUG
This commit is contained in:
parent
5ca7ae4585
commit
bbb536ebed
Notes:
sideshowbarker
2024-07-19 10:35:37 +09:00
Author: https://github.com/deoxxa Commit: https://github.com/SerenityOS/serenity/commit/bbb536ebed6 Pull-request: https://github.com/SerenityOS/serenity/pull/937
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ void NetworkTask_main()
|
|||
packet_size = adapter.dequeue_packet(buffer, buffer_size);
|
||||
pending_packets--;
|
||||
#ifdef NETWORK_TASK_DEBUG
|
||||
kprintf("NetworkTask: Dequeued packet from %s (%d bytes)\n", adapter.name().characters(), packet.value().size());
|
||||
kprintf("NetworkTask: Dequeued packet from %s (%d bytes)\n", adapter.name().characters(), packet_size);
|
||||
#endif
|
||||
});
|
||||
return packet_size;
|
||||
|
|
Loading…
Reference in a new issue