mirror of
https://github.com/reactos/reactos.git
synced 2026-06-05 19:43:39 +08:00
[ACPI] Fix the format of the (default hardcoded) "unique" instance ID.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user