From 4e845c10b7b0549cdd0ad400509454399150c061 Mon Sep 17 00:00:00 2001 From: Michael Jeanson Date: Thu, 27 Apr 2023 14:47:53 -0400 Subject: [PATCH] Fix: lttng-elf: add missing include for uint64_t MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Change-Id: Ic10f9c51197d1c6942ce76a7ee4be4a75f51db47 Signed-off-by: Michael Jeanson Signed-off-by: Jérémie Galarneau --- src/common/lttng-elf.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/common/lttng-elf.hpp b/src/common/lttng-elf.hpp index 98c388f56..baaea22a6 100644 --- a/src/common/lttng-elf.hpp +++ b/src/common/lttng-elf.hpp @@ -10,6 +10,8 @@ #include +#include + extern "C" LTTNG_EXPORT int lttng_elf_get_symbol_offset(int fd, char *symbol, uint64_t *offset); extern "C" LTTNG_EXPORT int lttng_elf_get_sdt_probe_offsets(int fd, -- 2.34.1