diff options
author | Yann Sionneau <ysionneau@kalray.eu> | 2021-11-29 16:33:34 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2021-12-24 00:29:55 +0100 |
commit | 062fac27c581ee207defcca238df691f896859f2 (patch) | |
tree | a9dc483920f90403d5f11fa13597370f0b6cf6ff /ldso/include/dl-string.h | |
parent | 48a333b652e4874f9fccccbc608fcedbe25909ea (diff) |
Fix -Wundef related warnings
Signed-off-by: Yann Sionneau <ysionneau@kalray.eu>
Diffstat (limited to 'ldso/include/dl-string.h')
-rw-r--r-- | ldso/include/dl-string.h | 2 |
1 files changed, 1 insertions, 1 deletions
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) |