aboutsummaryrefslogtreecommitdiff
path: root/src/kernel
diff options
context:
space:
mode:
authorMarvin Borner2020-05-31 22:54:55 +0200
committerMarvin Borner2020-05-31 22:54:55 +0200
commit5d276b98a2bbd4b69402559ced60f43af268f77b (patch)
treed99348bd5f07a14571b933957574b5c17f2316ca /src/kernel
parent4f03e4179df51860524beba5de87397c2d6a2074 (diff)
Fixed unavailable printf padding
Diffstat (limited to 'src/kernel')
-rw-r--r--src/kernel/net/rtl8139.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/net/rtl8139.c b/src/kernel/net/rtl8139.c
index 0c69025..bbee94f 100644
--- a/src/kernel/net/rtl8139.c
+++ b/src/kernel/net/rtl8139.c
@@ -61,7 +61,7 @@ int rtl8139_init(void)
// Get mac address
for (int i = 0; i < 6; ++i)
mac[i] = inb((u16)(rtl_iobase + 0x00 + i));
- debug("Mac address: %2x:%2x:%2x:%2x:%2x:%2x", mac[0], mac[1], mac[2], mac[3],
+ debug("Mac address: %x:%x:%x:%x:%x:%x", mac[0], mac[1], mac[2], mac[3],
mac[4], mac[5]);
// Activate (turn on)