Skip to content

Commit cdf06a5

Browse files
committed
Fix compilation error in go_binary_parse_profiling
Signed-off-by: Dom Del Nano <[email protected]> (cherry picked from commit 7ce56b9)
1 parent ef6e65f commit cdf06a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/stirling/binaries/go_binary_parse_profiling.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ int main(int argc, char** argv) {
7070
std::make_unique<GoOffsetLocator>(dwarf_reader.get(), build_info, go_version);
7171

7272
struct go_tls_symaddrs_t symaddrs;
73-
auto status = PopulateGoTLSDebugSymbols(elf_reader.get(), go_offset_locator.get(), &symaddrs);
73+
auto status = PopulateGoTLSDebugSymbols(go_offset_locator.get(), &symaddrs);
7474

7575
if (!status.ok()) {
7676
LOG(ERROR) << absl::Substitute("debug symbol parsing failed with: $0", status.msg());

0 commit comments

Comments
 (0)