|
From: Paul F. <pa...@so...> - 2023-03-21 21:11:59
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=394fa9223aff48b6b344f0d55f8bc409a5425486 commit 394fa9223aff48b6b344f0d55f8bc409a5425486 Author: Paul Floyd <pj...@wa...> Date: Tue Mar 21 22:11:11 2023 +0100 Solaris: fix build, another aligned alloc typo Diff: --- coregrind/m_replacemalloc/vg_replace_malloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coregrind/m_replacemalloc/vg_replace_malloc.c b/coregrind/m_replacemalloc/vg_replace_malloc.c index d3f33e66cf..db2fc5f309 100644 --- a/coregrind/m_replacemalloc/vg_replace_malloc.c +++ b/coregrind/m_replacemalloc/vg_replace_malloc.c @@ -1617,7 +1617,7 @@ extern int *___errno (void) __attribute__((weak)); #endif #if defined(VGO_solaris) -#define VG_MEMALIGD_ALIGN_FACTOR_FOUR 1 +#define VG_MEMALIGN_ALIGN_FACTOR_FOUR 1 #else #define VG_MEMALIGN_ALIGN_FACTOR_FOUR 0 #endif |