Changeset 80169 in vbox for trunk/src/VBox/Devices/VirtIO/Virtio_1_0.h
- Timestamp:
- Aug 7, 2019 3:58:55 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/VirtIO/Virtio_1_0.h
r80168 r80169 490 490 memcpy((char *)&val, pv, cb); 491 491 FMTHEX(pszFormattedVal, val, cb * 2); 492 RTStrPrintf(pszDepiction, sizeof(pszDepiction), "%s%s[%d:%d]", pszMember, pszIdx, uOffset, uOffset + cb); 492 if (uOffset != 0) /* display bounds if partial member access */ 493 RTStrPrintf(pszDepiction, sizeof(pszDepiction), "%s%s[%d:%d]", pszMember, pszIdx, uOffset, uOffset + cb - 1); 494 else 495 RTStrPrintf(pszDepiction, sizeof(pszDepiction), "%s%s", pszMember, pszIdx); 493 496 RTStrPrintf(pszDepiction, sizeof(pszDepiction), "%-30s", pszDepiction); 494 497 int first = 0;
Note:
See TracChangeset
for help on using the changeset viewer.