[DEVMGR]
authorEric Kohl <eric.kohl@reactos.org>
Mon, 6 Oct 2014 12:36:11 +0000 (12:36 +0000)
committerEric Kohl <eric.kohl@reactos.org>
Mon, 6 Oct 2014 12:36:11 +0000 (12:36 +0000)
Add a space between the hexadecimal and decimal IRQ numbers in the device resource list.

svn path=/trunk/; revision=64557

reactos/dll/win32/devmgr/hwresource.c

index b9657a5..fcc8095 100644 (file)
@@ -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++;
              }