Misc updates.
[seabios.git] / src / acpi.c
index b7af66e0b2fac9eb4f42e4f8c068c26a4c93138a..9e5a4fccf3f72b52d24478b41f9d1d5712dcc5d6 100644 (file)
@@ -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;
         }
     }