[COMMITTED] elf: Fix missing colon in LD_SHOW_AUXV output [BZ #28253]

Message ID 20210820143955.GA29544@lostca.se
State Committed
Commit 82fbcd7118d760492e2ecc9fa291e358b9ba0361
Headers
Series [COMMITTED] elf: Fix missing colon in LD_SHOW_AUXV output [BZ #28253] |

Commit Message

Arjun Shankar Aug. 20, 2021, 2:41 p.m. UTC
  From: Arjun Shankar <arjun@redhat.com>

This commit adds a missing colon in the AT_MINSIGSTKSZ entry in
the _dl_show_auxv function.
---
Committed and pushed to master as an obvious fix.

 elf/dl-sysdep.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Patch

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 },