aboutsummaryrefslogtreecommitdiff
path: root/ui-diff.c
diff options
context:
space:
mode:
authorJohn Keeping <john@keeping.me.uk>2015-03-08 16:32:17 +0000
committerJason A. Donenfeld <Jason@zx2c4.com>2015-03-09 17:38:46 +0100
commit12d3d4c3edfcf177c56ca97e5a4b0c8301ca46aa (patch)
treebae9ba5a16e0cbd0aa698d8635927b8b122a476c /ui-diff.c
parente3d3fffdd447cdb4551549faae65bae5353a2cab (diff)
downloadcgit-12d3d4c3edfcf177c56ca97e5a4b0c8301ca46aa.tar.gz
cgit-12d3d4c3edfcf177c56ca97e5a4b0c8301ca46aa.tar.bz2
Avoid signed bitfields
Bitfields are only defined for unsigned types. Detected by sparse. Signed-off-by: John Keeping <john@keeping.me.uk>
Diffstat (limited to 'ui-diff.c')
-rw-r--r--ui-diff.c2
1 files changed, 1 insertions, 1 deletions
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 {
unsigned int removed;
unsigned long old_size;
unsigned long new_size;
- int binary:1;
+ unsigned int binary:1;
} *items;
static int use_ssdiff = 0;