about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--ui-blob.c4
-rw-r--r--ui-diff.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/ui-blob.c b/ui-blob.c index a025bca..388a017 100644 --- a/ui-blob.c +++ b/ui-blob.c
@@ -14,8 +14,8 @@
14struct walk_tree_context { 14struct walk_tree_context {
15 const char *match_path; 15 const char *match_path;
16 unsigned char *matched_sha1; 16 unsigned char *matched_sha1;
17 int found_path:1; 17 unsigned int found_path:1;
18 int file_only:1; 18 unsigned int file_only:1;
19}; 19};
20 20
21static int walk_tree(const unsigned char *sha1, struct strbuf *base, 21static int walk_tree(const unsigned char *sha1, struct strbuf *base,
diff --git a/ui-diff.c b/ui-diff.c index 8eff178..1cf2ce0 100644 --- a/ui-diff.c +++ b/ui-diff.c
@@ -31,7 +31,7 @@ static struct fileinfo {
31 unsigned int removed; 31 unsigned int removed;
32 unsigned long old_size; 32 unsigned long old_size;
33 unsigned long new_size; 33 unsigned long new_size;
34 int binary:1; 34 unsigned int binary:1;
35} *items; 35} *items;
36 36
37static int use_ssdiff = 0; 37static int use_ssdiff = 0;