X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=src%2Facpi.c;h=9e5a4fccf3f72b52d24478b41f9d1d5712dcc5d6;hb=4d9d400031417528d4fbe05f845f3759237e48d3;hp=b7af66e0b2fac9eb4f42e4f8c068c26a4c93138a;hpb=969df6062527fe7019aa02241c321557ed9cb0a8;p=seabios.git diff --git a/src/acpi.c b/src/acpi.c index b7af66e..9e5a4fc 100644 --- a/src/acpi.c +++ b/src/acpi.c @@ -642,12 +642,13 @@ acpi_bios_init(void) u16 len = qemu_cfg_next_acpi_table_len(); void *addr = malloc_high(len); if (!addr) { - dprintf(1, "Not enogh memory of ext acpi table of size %d!\n", len); + dprintf(1, "Not enough memory for ext acpi table of size %d!\n" + , len); continue; } ACPI_INIT_TABLE(qemu_cfg_next_acpi_table_load(addr, len)); if (tbl_idx == MAX_ACPI_TABLES) { - dprintf(1, "To many external table!\n"); + dprintf(1, "Too many external tables!\n"); break; } }