summaryrefslogtreecommitdiff
path: root/stdlib
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1997-04-17 23:24:55 +0000
committerUlrich Drepper <drepper@redhat.com>1997-04-17 23:24:55 +0000
commitf854c0566e2659c192e1790dc2df23899c6e2b1c (patch)
tree4159d049aeb9f307816f276f50f731d9d3000fc2 /stdlib
parentb75f2c28f9f9eac316e3caa30ae1fdabb406eb62 (diff)
(tests): Correct 64-bit entry.
Diffstat (limited to 'stdlib')
-rw-r--r--stdlib/tst-strtol.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/tst-strtol.c b/stdlib/tst-strtol.c
index 13286912c7..8719d4b9ed 100644
--- a/stdlib/tst-strtol.c
+++ b/stdlib/tst-strtol.c
@@ -66,7 +66,7 @@ static const struct ltest tests[] =
{ "0xffffffffffffffffg", 0xffffffffffffffff, 0, 'g', 0 },
{ "0xf1f2f3f4f5f6f7f8f9", 0xffffffffffffffff, 0, 0, ERANGE },
{ "-0x123456789abcdef01", 0xffffffffffffffff, 0, 0, ERANGE },
- { "-0xfedcba987654321", 0x0123456789abcdf, 0, 0, 0 },
+ { "-0xfedcba987654321", 0xf0123456789abcdf, 0, 0, 0 },
{ NULL, 0, 0, 0, 0 },
#endif
};