public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
* [PATCH COMMITTED] elf: Fix -DNDEBUG warning in _dl_start_args_adjust
@ 2022-06-28  8:45 Florian Weimer
  0 siblings, 0 replies; only message in thread
From: Florian Weimer @ 2022-06-28  8:45 UTC (permalink / raw)
  To: libc-alpha

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.  */


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-06-28  8:45 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-28  8:45 [PATCH COMMITTED] elf: Fix -DNDEBUG warning in _dl_start_args_adjust Florian Weimer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).