From 2c07a069b8e72dd820117c010aa569d3d1a180dd Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Wed, 31 Aug 2016 07:16:56 +0000 Subject: [PATCH] Update the Linux code to reflect the changes done by zturner in r280139 llvm-svn: 280200 --- lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp b/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp index 49d57c0..49efeb8 100644 --- a/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp +++ b/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp @@ -1687,7 +1687,7 @@ ParseMemoryRegionInfoFromProcMapsLine (const std::string &maps_line, MemoryRegio line_extractor.GetU64(0, 10); // Read the inode number line_extractor.SkipSpaces(); - const char* name = line_extractor.Peek(); + const char* name = line_extractor.PeekChar(); if (name) memory_region_info.SetName(name); -- 2.7.4