summaryrefslogtreecommitdiff
path: root/kernel/network/ethernet.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/network/ethernet.c')
-rw-r--r--kernel/network/ethernet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/network/ethernet.c b/kernel/network/ethernet.c
index cf2e047..1bda07f 100644
--- a/kernel/network/ethernet.c
+++ b/kernel/network/ethernet.c
@@ -62,7 +62,7 @@ void handle_ethernet(const u8 *packet, u64 packet_length) {
handle_ipv4(payload, packet_length - sizeof(struct ETHERNET_HEADER) - 4);
break;
default:
- kprintf("Can't handle ethernet type\n");
+ kprintf("Can't handle ethernet type 0x%x\n", type);
break;
}
}