- Timestamp:
- Sep 25, 2019 4:55:15 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/Firmware/VBoxPkg/Library/VBoxDebugLib/VBoxPrintHexDump.c
r76553 r81009 30 30 * Header Files * 31 31 *********************************************************************************************************************************/ 32 #include <ctype.h>33 32 #include "VBoxDebugLib.h" 34 33 #include "DevEFI.h" 35 34 #include "iprt/asm.h" 35 #include "iprt/ctype.h" 36 36 37 37 … … 81 81 cchPrinted += VBoxPrintString(" "); 82 82 for (i = 0; i < 16 && i < cb; i++) 83 cchPrinted += vboxPrintHexDumpChar( isprint(pb[i])83 cchPrinted += vboxPrintHexDumpChar(RT_C_IS_PRINT(pb[i]) 84 84 ? pb[i] 85 85 : '.');
Note:
See TracChangeset
for help on using the changeset viewer.