Changeset 26270 in vbox
- Timestamp:
- Feb 5, 2010 3:42:30 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 57329
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMSwitcher.cpp
r25946 r26270 821 821 uint32_t cbInstr = 0; 822 822 char szDisas[256]; 823 if (RT_SUCCESS(DISInstr(&Cpu, ( RTUINTPTR)pu8CodeR3 + offCode, uBase - (RTUINTPTR)pu8CodeR3, &cbInstr, szDisas)))823 if (RT_SUCCESS(DISInstr(&Cpu, (uintptr_t)pu8CodeR3 + offCode, uBase - (uintptr_t)pu8CodeR3, &cbInstr, szDisas))) 824 824 RTLogPrintf(" %04x: %s", offCode, szDisas); //for whatever reason szDisas includes '\n'. 825 825 else
Note:
See TracChangeset
for help on using the changeset viewer.