summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/lib/coreboot_table.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/coreboot_table.c b/src/lib/coreboot_table.c
index 5f8c69bf2a4f..29be857e1e93 100644
--- a/src/lib/coreboot_table.c
+++ b/src/lib/coreboot_table.c
@@ -165,7 +165,7 @@ static void lb_gpios(struct lb_header *header)
" NAME | PORT | POLARITY | VALUE\n",
gpios->count);
for (g = &gpios->gpios[0]; g < &gpios->gpios[gpios->count]; g++) {
- printk(BIOS_INFO, "%16s | ", g->name);
+ printk(BIOS_INFO, "%16.16s | ", g->name);
if (g->port == -1)
printk(BIOS_INFO, " undefined | ");
else