about summary refs log tree commit diff
diff options
context:
space:
mode:
authorStafford Horne <shorne@gmail.com>2023-03-04 02:03:00 +0900
committerStafford Horne <shorne@gmail.com>2024-03-23 08:36:28 +0000
commit4a13b3ef46fc10e695630d4774af7fe4944f64ca (patch)
tree86f2ca7f6cd681279133479b88e654f1347f7e39
parentad05a42370fa09062ff2b450fb69905d9f407643 (diff)
downloadglibc-4a13b3ef46fc10e695630d4774af7fe4944f64ca.tar.gz
glibc-4a13b3ef46fc10e695630d4774af7fe4944f64ca.tar.xz
glibc-4a13b3ef46fc10e695630d4774af7fe4944f64ca.zip
stdlib: Fix tst-makecontext2 log when swapcontext fails
The log incorrectly prints, setcontext failed.  Update this to indicate
that actually swapcontext failed.

Signed-off-by: Stafford Horne <shorne@gmail.com>
Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
-rw-r--r--stdlib/tst-makecontext2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/tst-makecontext2.c b/stdlib/tst-makecontext2.c
index 5091b126a0..2434cb2af3 100644
--- a/stdlib/tst-makecontext2.c
+++ b/stdlib/tst-makecontext2.c
@@ -63,7 +63,7 @@ do_test (void)
       makecontext (&ucp, (void (*) (void)) cf, 2, 78, 274);
       if (swapcontext (&ucp2, &ucp) != 0)
 	{
-	  puts ("setcontext failed");
+	  puts ("swapcontext failed");
 	  return 1;
 	}