about summary refs log tree commit diff
path: root/elf/dl-sysdep.c
diff options
context:
space:
mode:
authorArjun Shankar <arjun@redhat.com>2021-08-20 16:24:05 +0200
committerArjun Shankar <arjun@redhat.com>2021-08-20 16:29:43 +0200
commit82fbcd7118d760492e2ecc9fa291e358b9ba0361 (patch)
treec88957693d35b157b81df75b76aa59e2f0fe24b1 /elf/dl-sysdep.c
parent0835c0f0bad351117154b815f34f8af19ea7e325 (diff)
downloadglibc-82fbcd7118d760492e2ecc9fa291e358b9ba0361.tar.gz
glibc-82fbcd7118d760492e2ecc9fa291e358b9ba0361.tar.xz
glibc-82fbcd7118d760492e2ecc9fa291e358b9ba0361.zip
elf: Fix missing colon in LD_SHOW_AUXV output [BZ #28253]
This commit adds a missing colon in the AT_MINSIGSTKSZ entry in
the _dl_show_auxv function.
Diffstat (limited to 'elf/dl-sysdep.c')
-rw-r--r--elf/dl-sysdep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/dl-sysdep.c b/elf/dl-sysdep.c
index d47bef1340..2c684c2db2 100644
--- a/elf/dl-sysdep.c
+++ b/elf/dl-sysdep.c
@@ -317,7 +317,7 @@ _dl_show_auxv (void)
 	  [AT_SYSINFO_EHDR - 2] =	{ "SYSINFO_EHDR:      0x", hex },
 	  [AT_RANDOM - 2] =		{ "RANDOM:            0x", hex },
 	  [AT_HWCAP2 - 2] =		{ "HWCAP2:            0x", hex },
-	  [AT_MINSIGSTKSZ - 2] =	{ "MINSIGSTKSZ        ", dec },
+	  [AT_MINSIGSTKSZ - 2] =	{ "MINSIGSTKSZ:       ", dec },
 	  [AT_L1I_CACHESIZE - 2] =	{ "L1I_CACHESIZE:     ", dec },
 	  [AT_L1I_CACHEGEOMETRY - 2] =	{ "L1I_CACHEGEOMETRY: 0x", hex },
 	  [AT_L1D_CACHESIZE - 2] =	{ "L1D_CACHESIZE:     ", dec },