Disassembler: Add an stderr message for unknown ACPI tables.

An additional error message for tables that are not supported,
so that it appears on the console.
This commit is contained in:
Robert Moore 2013-01-18 13:32:38 -08:00
parent 731b8283ed
commit dd96990682

View File

@ -547,6 +547,8 @@ AcpiDmDumpDataTable (
{
AcpiOsPrintf ("\n**** Unknown ACPI table type [%4.4s]\n\n",
Table->Signature);
fprintf (stderr, "Unknown ACPI table signature [%4.4s], decoding header only\n",
Table->Signature);
}
}
else if (TableData->TableHandler)