From 468b12adb15f5546e7c5536f72204605fbd83f6d Mon Sep 17 00:00:00 2001 From: Ramsay Jones Date: Tue, 1 Jun 2010 19:31:26 +0100 Subject: [PATCH] msvc: tests/t0403-lists.c: Fix a compiler warning For more recent versions of msvc, the time_t type, as returned by the time() function, is a 64-bit type. The srand() function, however, expects an 'unsigned int' input parameter, leading to the warning. Signed-off-by: Ramsay Jones Signed-off-by: Andreas Ericsson --- tests/t0403-lists.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/t0403-lists.c b/tests/t0403-lists.c index ff4fd6b1c..daee7af94 100644 --- a/tests/t0403-lists.c +++ b/tests/t0403-lists.c @@ -20,7 +20,7 @@ BEGIN_TEST(list_timesort_test) } memset(&list, 0x0, sizeof(git_commit_list)); - srand(time(NULL)); + srand((unsigned int)time(NULL)); for (t = 0; t < 20; ++t) {