From e71f0bb317f5ff3374842fdda70b334f49bcc2d6 Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Mon, 6 Oct 2014 12:36:11 +0000 Subject: [PATCH 1/1] [DEVMGR] 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/dll/win32/devmgr/hwresource.c b/reactos/dll/win32/devmgr/hwresource.c index b9657a5c89b..fcc80956c0d 100644 --- a/reactos/dll/win32/devmgr/hwresource.c +++ b/reactos/dll/win32/devmgr/hwresource.c @@ -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++; } -- 2.17.1