Commit e08b246cecac9cb713de3429aed0ab9e5c37327d

Vicent Marti 2011-01-19T17:20:39

Fix signed/unsigned comparison warning Signed-off-by: Vicent Marti <tanoku@gmail.com>

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/tests/t0601-read.c b/tests/t0601-read.c
index 98ab74f..c302acf 100644
--- a/tests/t0601-read.c
+++ b/tests/t0601-read.c
@@ -11,7 +11,7 @@
 struct test_entry {
 	unsigned int index;
 	char path[128];
-	size_t file_size;
+	git_off_t file_size;
 	time_t mtime;
 };