Increase sprintf(3) buffer size, which I forgot from the previous commit.

This commit is contained in:
Jung-uk Kim 2009-04-07 17:24:25 +00:00
parent 05ea372876
commit d4e77db18b

View File

@ -77,7 +77,7 @@ smbios_detect(void)
uint8_t *smbios, *dmi, *addr;
uint16_t i, length, count;
uint32_t paddr;
char buf[4];
char buf[16];
/* locate and validate the SMBIOS */
smbios = smbios_sigsearch(PTOV(SMBIOS_START), SMBIOS_LENGTH);