Skip to content

Commit

Permalink
Kernel: Fix code locked behind NETWORK_TASK_DEBUG
Browse files Browse the repository at this point in the history
  • Loading branch information
deoxxa authored and awesomekling committed Dec 28, 2019
1 parent 5ca7ae4 commit bbb536e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Kernel/Net/NetworkTask.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit bbb536e

Please sign in to comment.