mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-29 19:26:33 +00:00
[DEVMGR]
- Correctly display memory ranges CORE-7666 #resolve svn path=/trunk/; revision=61191
This commit is contained in:
@@ -298,7 +298,7 @@ AddResourceItems(
|
||||
{
|
||||
if (LoadString(hDllInstance, IDS_RESOURCE_MEMORY_RANGE, szBuffer, sizeof(szBuffer) / sizeof(szBuffer[0])))
|
||||
{
|
||||
wsprintf(szDetail, L"%08lx - %08lx", Descriptor->u.Memory.Start, Descriptor->u.Memory.Start.LowPart + Descriptor->u.Memory.Length - 1);
|
||||
wsprintf(szDetail, L"%08I64x - %08I64x", Descriptor->u.Memory.Start.QuadPart, Descriptor->u.Memory.Start.QuadPart + Descriptor->u.Memory.Length - 1);
|
||||
InsertListItem(hWndDevList, ItemCount, szBuffer, szDetail);
|
||||
ItemCount++;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user