From f854c0566e2659c192e1790dc2df23899c6e2b1c Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 17 Apr 1997 23:24:55 +0000 Subject: [PATCH] (tests): Correct 64-bit entry. --- stdlib/tst-strtol.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/tst-strtol.c b/stdlib/tst-strtol.c index 13286912c74..8719d4b9ed9 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 }; -- 2.47.2