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

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=c1ada668a381e122ee37cb8be7f0637111f63ea7

commit c1ada668a381e122ee37cb8be7f0637111f63ea7
Author: Florian Weimer <fweimer@redhat.com>
Date:   Tue Jun 28 10:40:16 2022 +0200

    elf: Fix -DNDEBUG warning in _dl_start_args_adjust
    
    This is another blocker for building glibc with the default
    -Werror setting and -DNDEBUG.

Diff:
---
 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:44 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:44 [glibc] 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).