[PATCH COMMITTED] elf: Fix -DNDEBUG warning in _dl_start_args_adjust
Florian Weimer
fweimer@redhat.com
Tue Jun 28 08:45:14 GMT 2022
This is another blocker for building glibc with the default
-Werror setting and -DNDEBUG.
---
elf/rtld.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/elf/rtld.c b/elf/rtld.c
index f5a3d1968f..cbbaf4a331 100644
--- a/elf/rtld.c
+++ b/elf/rtld.c
@@ -1307,7 +1307,7 @@ _dl_start_args_adjust (int skip_args)
return;
/* Sanity check. */
- intptr_t argc = (intptr_t) sp[0] - skip_args;
+ intptr_t argc __attribute__ ((unused)) = (intptr_t) sp[0] - skip_args;
assert (argc == _dl_argc);
/* Adjust argc on stack. */
More information about the Libc-alpha
mailing list