From: Paul F. <pa...@so...> - 2024-10-05 14:12:07
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=dd971190ab0fa0300e840ce42af141210f8a7d2d commit dd971190ab0fa0300e840ce42af141210f8a7d2d Author: Paul Floyd <pj...@wa...> Date: Sat Oct 5 16:10:02 2024 +0200 FreeBSD regtest: auxv test string map has version dependend size Diff: --- none/tests/freebsd/auxv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/none/tests/freebsd/auxv.c b/none/tests/freebsd/auxv.c index 19e9232617..c49e606ea0 100644 --- a/none/tests/freebsd/auxv.c +++ b/none/tests/freebsd/auxv.c @@ -10,7 +10,7 @@ typedef struct { int type; } Elf_AuxStr; -Elf_AuxStr aux_map[AT_COUNT] = { +Elf_AuxStr aux_map[] = { {"AT_NULL", 0}, {"AT_IGNORE", 1}, {"AT_EXECFD", 2}, |