From 7e725854e791e4aedbef1757a8ed723e8661e7ab Mon Sep 17 00:00:00 2001 From: Peter Edwards Date: Mon, 11 Nov 2024 19:58:50 +0000 Subject: [PATCH] missed one h to auxv.h because windows --- process.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/process.cc b/process.cc index 3be2ff6..d696874 100644 --- a/process.cc +++ b/process.cc @@ -212,7 +212,7 @@ Process::getDwarf(Elf::Object::sptr elf) const const char * auxtype2str(int auxtype) { #define AUX_TYPE(t, v) if (auxtype == t) return #t; -#include "libpstack/elf/aux.h" +#include "libpstack/elf/auxv.h" return "unknown type"; #undef AUX_TYPE }