summaryrefslogtreecommitdiffstats
path: root/test-delta.c
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-06-29 09:32:11 +0200
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-06-29 18:11:38 +0200
commit3c84974207fb6a98eaa393cd4c3481d8ecdb8ce2 (patch)
treeefc70d4b3da5059ea0eeb6a48791aa6dc1805256 /test-delta.c
parent[PATCH] assorted delta code cleanup (diff)
downloadgit-3c84974207fb6a98eaa393cd4c3481d8ecdb8ce2.tar.xz
git-3c84974207fb6a98eaa393cd4c3481d8ecdb8ce2.zip
[PATCH] Fixlets on top of Nico's clean-up.
If we prefer 0 as maxsize for diff_delta() to say "unlimited", let's be consistent about it. This patch also fixes type mismatch in a call to get_delta_hdr_size() from packed_delta_info(). Signed-off-by: Junio C Hamano <junkio@cox.net> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'test-delta.c')
-rw-r--r--test-delta.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test-delta.c b/test-delta.c
index da51efc245..37ef86b283 100644
--- a/test-delta.c
+++ b/test-delta.c
@@ -61,7 +61,7 @@ int main(int argc, char *argv[])
if (argv[1][1] == 'd')
out_buf = diff_delta(from_buf, from_size,
data_buf, data_size,
- &out_size, ~0UL);
+ &out_size, 0);
else
out_buf = patch_delta(from_buf, from_size,
data_buf, data_size,