From e08b246cecac9cb713de3429aed0ab9e5c37327d Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Wed, 19 Jan 2011 17:20:39 -0800 Subject: [PATCH] Fix signed/unsigned comparison warning Signed-off-by: Vicent Marti --- tests/t0601-read.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/t0601-read.c b/tests/t0601-read.c index 98ab74fa0..c302acfc2 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; };