summaryrefslogtreecommitdiff
path: root/libc/stdlib
diff options
context:
space:
mode:
authorjoseph <joseph@7b3dc134-2b1b-0410-93df-9e9f96275f8d>2008-04-11 12:45:38 +0000
committerjoseph <joseph@7b3dc134-2b1b-0410-93df-9e9f96275f8d>2008-04-11 12:45:38 +0000
commitb0eaca4212adbb440bab783f5f9ebfed7798db80 (patch)
tree0f73d43014b419947f84181e4a94fdf2f20ead76 /libc/stdlib
parent8f50aae34899188b08cfed79bb519d353510c702 (diff)
Merge changes between r5854 and r5879 from /fsf/trunk.
git-svn-id: svn://svn.eglibc.org/trunk@5880 7b3dc134-2b1b-0410-93df-9e9f96275f8d
Diffstat (limited to 'libc/stdlib')
-rw-r--r--libc/stdlib/tst-makecontext.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/stdlib/tst-makecontext.c b/libc/stdlib/tst-makecontext.c
index 5fe66f6fc..00f8f1990 100644
--- a/libc/stdlib/tst-makecontext.c
+++ b/libc/stdlib/tst-makecontext.c
@@ -26,11 +26,12 @@ char st1[8192];
__thread int thr;
int somevar = -76;
+long othervar = -78L;
void
cf (int i)
{
- if (i != -78 || thr != 94)
+ if (i != othervar || thr != 94)
{
printf ("i %d thr %d\n", i, thr);
exit (1);