about summary refs log tree commit diff
path: root/stdlib/tst-strtoll.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2009-10-30 09:22:34 -0700
committerUlrich Drepper <drepper@redhat.com>2009-10-30 09:22:34 -0700
commit08c7ad975ca9e9f017dbbd35e2c01f34058ca700 (patch)
tree418e5fcac3ea9828a1a3ccf522a41608db6ad819 /stdlib/tst-strtoll.c
parent9dd5b8a167cfc4fdab3c3862ca3cb14fd9836297 (diff)
downloadglibc-08c7ad975ca9e9f017dbbd35e2c01f34058ca700.tar.gz
glibc-08c7ad975ca9e9f017dbbd35e2c01f34058ca700.tar.xz
glibc-08c7ad975ca9e9f017dbbd35e2c01f34058ca700.zip
Avoid two warnings in strtol{,l} tests.
Diffstat (limited to 'stdlib/tst-strtoll.c')
-rw-r--r--stdlib/tst-strtoll.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/tst-strtoll.c b/stdlib/tst-strtoll.c
index a5a1eb07d9..ba3338241b 100644
--- a/stdlib/tst-strtoll.c
+++ b/stdlib/tst-strtoll.c
@@ -152,7 +152,7 @@ static const struct ltest tests[] =
   {"-2021110011022210012102010021220101220222",
    -9223372036854775808ull, 3, 0, 0},
   {"-2021110011022210012102010021220101221000",
-   -9223372036854775808l, 3, 0, ERANGE},
+   -9223372036854775808ull, 3, 0, ERANGE},
   {"-20000000000000000000000000000000", -9223372036854775808ull, 4, 0, 0},
   {"-20000000000000000000000000000001", -9223372036854775808ull, 4, 0, ERANGE},
   {"-1104332401304422434310311213", -9223372036854775808ull, 5, 0, 0},