Changeset 67350 in vbox for trunk/src/VBox/Devices/EFI/Firmware/VBoxPkg/Library/VBoxDebugLib/VBoxPrintHexDump.c
- Timestamp:
- Jun 12, 2017 5:42:14 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/Firmware/VBoxPkg/Library/VBoxDebugLib/VBoxPrintHexDump.c
r62500 r67350 30 30 * Header Files * 31 31 *******************************************************************************/ 32 #include <ctype.h> 32 33 #include "VBoxDebugLib.h" 33 34 #include "DevEFI.h" 34 #include <iprt/ctype.h>35 #include "iprt/asm.h" 35 36 36 37 … … 80 81 cchPrinted += VBoxPrintString(" "); 81 82 for (i = 0; i < 16 && i < cb; i++) 82 cchPrinted += vboxPrintHexDumpChar(pb[i] == ' ' 83 ? ' ' 84 : RT_C_IS_GRAPH(pb[i]) 83 cchPrinted += vboxPrintHexDumpChar(isprint(pb[i]) 85 84 ? pb[i] 86 85 : '.');
Note:
See TracChangeset
for help on using the changeset viewer.