mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 20:50:41 +00:00
[DEVMGR]
Add a space between the hexadecimal and decimal IRQ numbers in the device resource list. svn path=/trunk/; revision=64557
This commit is contained in:
parent
6151cb6f38
commit
e71f0bb317
1 changed files with 1 additions and 1 deletions
|
@ -278,7 +278,7 @@ AddResourceItems(
|
|||
{
|
||||
if (LoadString(hDllInstance, IDS_RESOURCE_INTERRUPT, szBuffer, sizeof(szBuffer) / sizeof(szBuffer[0])))
|
||||
{
|
||||
wsprintf(szDetail, L"0x%08x(%d)", Descriptor->u.Interrupt.Level, Descriptor->u.Interrupt.Vector);
|
||||
wsprintf(szDetail, L"0x%08x (%d)", Descriptor->u.Interrupt.Level, Descriptor->u.Interrupt.Vector);
|
||||
InsertListItem(hWndDevList, ItemCount, szBuffer, szDetail);
|
||||
ItemCount++;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue