Author: ekohl Date: Mon Oct 6 12:36:11 2014 New Revision: 64557
URL: http://svn.reactos.org/svn/reactos?rev=64557&view=rev Log: [DEVMGR] Add a space between the hexadecimal and decimal IRQ numbers in the device resource list.
Modified: trunk/reactos/dll/win32/devmgr/hwresource.c
Modified: trunk/reactos/dll/win32/devmgr/hwresource.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/devmgr/hwresource... ============================================================================== --- trunk/reactos/dll/win32/devmgr/hwresource.c [iso-8859-1] (original) +++ trunk/reactos/dll/win32/devmgr/hwresource.c [iso-8859-1] Mon Oct 6 12:36:11 2014 @@ -278,7 +278,7 @@ { 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++; }