From: Ulrich Drepper Date: Thu, 17 Apr 1997 23:24:55 +0000 (+0000) Subject: (tests): Correct 64-bit entry. X-Git-Tag: cvs/libc20x-ud-970417~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f854c0566e2659c192e1790dc2df23899c6e2b1c;p=thirdparty%2Fglibc.git (tests): Correct 64-bit entry. --- 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 };