summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--wcstol.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/wcstol.c b/wcstol.c
index 07113df..8c4ed14 100644
--- a/wcstol.c
+++ b/wcstol.c
@@ -63,7 +63,7 @@ int test_wcstol(void)
TEST(l, wcstol(L"00010010001101000101011001111000", 0, 2), 0x12345678, "%ld != %ld");
TEST(l, wcstol(s=L"0xz", &c, 16), 0, "%ld != %ld");
- TEST2(i, c-s, 1, "wrong final position %ld != %ld");
+ TEST2(i, c-s, 0, "wrong final position %ld != %ld");
TEST(l, wcstol(s=L"0x1234", &c, 16), 0x1234, "%ld != %ld");
TEST2(i, c-s, 6, "wrong final position %ld != %ld");