From 3cd8b687d5dc8006a5eae9e9c4dac212e8df67d1 Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Sat, 10 Jul 2010 12:08:04 -0700 Subject: [PATCH] Fix warning in util.h (signed vs unsigned comparison) This fix had been delayed by Ramsay because on 32-bit systems it highlights the fact that off_t is set to an invalid value. Signed-off-by: Vicent Marti --- src/util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util.h b/src/util.h index 4195117c1..71d0a2d52 100644 --- a/src/util.h +++ b/src/util.h @@ -38,7 +38,7 @@ extern int git__basename(char *base, size_t n, char *path); GIT_INLINE(int) git__is_sizet(off_t p) { size_t r = (size_t)p; - return p == r; + return p == (off_t)r; } /*