diff options
Diffstat (limited to 'lldb/source/Core/DataExtractor.cpp')
-rw-r--r-- | lldb/source/Core/DataExtractor.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/source/Core/DataExtractor.cpp b/lldb/source/Core/DataExtractor.cpp index 9518b44cffb..e364dfd6097 100644 --- a/lldb/source/Core/DataExtractor.cpp +++ b/lldb/source/Core/DataExtractor.cpp @@ -1793,6 +1793,7 @@ void DataExtractor::DumpHexBytes (Stream *s, const void *src, size_t src_len, + uint32_t bytes_per_line, addr_t base_addr) { DataExtractor data (src, src_len, eByteOrderLittle, 4); @@ -1801,7 +1802,7 @@ DataExtractor::DumpHexBytes (Stream *s, eFormatBytes, // Dump as hex bytes 1, // Size of each item is 1 for single bytes src_len, // Number of bytes - 32, // Num bytes per line + bytes_per_line, // Num bytes per line base_addr, // Base address 0, 0); // Bitfield info } |