From 3c840a4b64c34886309b5203a6c3811bd92264d2 Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Sat, 25 Jan 2025 12:30:28 -0500 Subject: [PATCH] rtld: Fix an inverted #ifdef Not sure why this passed CI before --- libexec/rtld-elf/rtld.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libexec/rtld-elf/rtld.h b/libexec/rtld-elf/rtld.h index 0fac8e8144bc..5667192dd5d1 100644 --- a/libexec/rtld-elf/rtld.h +++ b/libexec/rtld-elf/rtld.h @@ -83,7 +83,7 @@ __BEGIN_DECLS typeof (Y) y_ = (Y); \ (x_ > y_) ? x_ : y_; }) -#ifdef CHERI_LIB_C18N +#ifndef CHERI_LIB_C18N #define rtld_get_return_address() __builtin_return_address(0) #else #define rtld_get_return_address() ({ \