Changeset 84783 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Jun 11, 2020 7:26:56 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/VirtIO/Virtio_1_0.cpp
r84782 r84783 37 37 #include "Virtio_1_0.h" 38 38 39 39 40 /********************************************************************************************************************************* 40 41 * Defined Constants And Macros * … … 509 510 cbPrint = RTStrPrintf(pszOut, cbRemain, "-- %s", (col + 1) % 8 ? "" : " "); 510 511 else 511 cbPrint = RTStrPrintf(pszOut, cbRemain, ("%02x %s", pv[idx], (col + 1) % 8 ? "" : " "));512 cbPrint = RTStrPrintf(pszOut, cbRemain, "%02x %s", pv[idx], (col + 1) % 8 ? "" : " "); 512 513 ADJCURSOR(cbPrint); 513 514 }
Note:
See TracChangeset
for help on using the changeset viewer.