]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
(tests): Correct 64-bit entry.
authorUlrich Drepper <drepper@redhat.com>
Thu, 17 Apr 1997 23:24:55 +0000 (23:24 +0000)
committerUlrich Drepper <drepper@redhat.com>
Thu, 17 Apr 1997 23:24:55 +0000 (23:24 +0000)
stdlib/tst-strtol.c

index 13286912c74088f2260a415ce62b0a38dbda0991..8719d4b9ed9a6e2d69a536bdd0f5e3a56f27783a 100644 (file)
@@ -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
   };