diff options
-rw-r--r-- | ldso/ldso/ldso.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ldso/ldso/ldso.c b/ldso/ldso/ldso.c index 2d7a2349d..fddc787f9 100644 --- a/ldso/ldso/ldso.c +++ b/ldso/ldso/ldso.c @@ -751,7 +751,8 @@ of this helper program; chances are you did not intend to run this program.\n\ * case the executable is actually an ET_DYN object. */ if (app_tpnt->l_tls_initimage != NULL) { - unsigned int tmp = (unsigned int) app_tpnt->l_tls_initimage; + unsigned int tmp __attribute((unused)) = + (unsigned int) app_tpnt->l_tls_initimage; app_tpnt->l_tls_initimage = (char *) app_tpnt->l_tls_initimage + app_tpnt->loadaddr; _dl_debug_early("Relocated TLS initial image from %x to %x (size = %x)\n", |