[glibc] elf: Fix 785a028ab70 for PTHREAD_STACK_MIN platforms

Adhemerval Zanella via Glibc-cvs <[email protected]> Thu, 14 May 2026 22:04:02 +0000 (GMT)
Newsgroups gmane.comp.lib.glibc.cvs
Message-ID <[email protected]>
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=3bd334037e6316ec3db14d7123ce4e7a8bc7ec77

commit 3bd334037e6316ec3db14d7123ce4e7a8bc7ec77
Author: Adhemerval Zanella <[email protected]>
Date:   Thu May 14 19:02:10 2026 -0300

    elf: Fix 785a028ab70 for PTHREAD_STACK_MIN platforms
    
    Due a missing ';'.

Diff:
---
 elf/tst-bz26577-minstack.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/elf/tst-bz26577-minstack.c b/elf/tst-bz26577-minstack.c
index f49011290f..741b307392 100644
--- a/elf/tst-bz26577-minstack.c
+++ b/elf/tst-bz26577-minstack.c
@@ -53,7 +53,7 @@ do_test (void)
   char *path = xasprintf ("%s/elf/tst-bz26577-mod.so", support_objdir_root);
   size_t stacksize =
 #ifdef PTHREAD_STACK_MIN
-    PTHREAD_STACK_MIN
+    PTHREAD_STACK_MIN;
 #else
     support_small_thread_stack_size ();
 #endif