diff options
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/coreboot_table.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/coreboot_table.c b/src/lib/coreboot_table.c index 5f8c69bf2a..29be857e1e 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 |