From 062fac27c581ee207defcca238df691f896859f2 Mon Sep 17 00:00:00 2001 From: Yann Sionneau Date: Mon, 29 Nov 2021 16:33:34 +0100 Subject: Fix -Wundef related warnings Signed-off-by: Yann Sionneau --- ldso/include/dl-string.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ldso/include') diff --git a/ldso/include/dl-string.h b/ldso/include/dl-string.h index bf6997188..6cc76dbf9 100644 --- a/ldso/include/dl-string.h +++ b/ldso/include/dl-string.h @@ -257,7 +257,7 @@ static __always_inline char * _dl_simple_ltoahex(char *local, unsigned long i) /* On some (wierd) arches, none of this stuff works at all, so * disable the whole lot... */ /* The same applies for ARM FDPIC at least for the moment. */ -#if defined(__mips__) || (__FDPIC__) +#if defined(__mips__) || defined(__FDPIC__) # define SEND_STDERR(X) # define SEND_ADDRESS_STDERR(X, add_a_newline) -- cgit v1.2.3