[ACPI] Fix the format of the (default hardcoded) "unique" instance ID.

This commit is contained in:
Hermès Bélusca-Maïto 2018-04-04 02:25:49 +02:00
parent fa103197ad
commit 2183e65c17
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0

View file

@ -507,12 +507,12 @@ Bus_PDO_QueryDeviceId(
Device->pnp.unique_id);
else
/* FIXME: Generate unique id! */
length = swprintf(temp, L"%ls", L"0000");
length = swprintf(temp, L"%ls", L"0");
}
else
{
/* FIXME: Generate unique id! */
length = swprintf(temp, L"%ls", L"0000");
length = swprintf(temp, L"%ls", L"0");
}
temp[length++] = UNICODE_NULL;