- Correctly display memory ranges
CORE-7666 #resolve

svn path=/trunk/; revision=61191
This commit is contained in:
Thomas Faber
2013-12-01 20:13:46 +00:00
parent 3e358ebc0d
commit 470f323c46
+1 -1
View File
@@ -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++;
}