From 107e30e9c58facc3fdafefa7bb17ab6f04ddd2ec Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Fri, 30 Sep 2011 16:25:03 +0200 Subject: [PATCH] core: One last `long long` --- tests/t00-core.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/t00-core.c b/tests/t00-core.c index 588b3c63f..703504bf8 100644 --- a/tests/t00-core.c +++ b/tests/t00-core.c @@ -556,7 +556,7 @@ BEGIN_TEST(rmdir1, "make sure non-empty dir cannot be deleted recusively") END_TEST BEGIN_TEST(strtol0, "parsing out 32 integers from a string") - int i; + int32_t i; must_pass(git__strtol32(&i, "123", NULL, 10)); must_be_true(i == 123); @@ -575,7 +575,7 @@ BEGIN_TEST(strtol0, "parsing out 32 integers from a string") END_TEST BEGIN_TEST(strtol1, "parsing out 64 integers from a string") - long long i; + int64_t i; must_pass(git__strtol64(&i, "123", NULL, 10)); must_be_true(i == 123);