summaryrefslogtreecommitdiff
path: root/stdlib
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1992-05-13 23:14:15 +0000
committerRoland McGrath <roland@gnu.org>1992-05-13 23:14:15 +0000
commitfc1e918204fe7c6599ffe6133ba74f7e4d884a6f (patch)
treec0df66283cdb201a0513b6b1140e3a6d8f25294f /stdlib
parent0e2cf7aee80fd3b2d11caf7f728a426c5231460b (diff)
Formerly ../stdlib/tst-strtol.c.~2~
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 bd1255167e..b20a33d72e 100644
--- a/stdlib/tst-strtol.c
+++ b/stdlib/tst-strtol.c
@@ -26,7 +26,7 @@ static CONST struct ltest tests[] =
"214748364888", 2147483647, 0, 0, ERANGE,
"2147483650", 2147483647, 0, 0, ERANGE,
"-2147486349", -2147483648, 0, 0, ERANGE,
- "-2147483648", -2147483648, 0, 0, 0,
+ "-2147486348", -2147483648, 0, 0, 0,
"0123", 0123, 0, 0, 0,
"0x1122334455z", 2147483647, 16, 'z', ERANGE,
"0x0xc", 0, 0, 'x', 0,