mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[ACPI] Fix the format of the (default hardcoded) "unique" instance ID.
This commit is contained in:
parent
fa103197ad
commit
2183e65c17
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue