mirror of
https://git.zx2c4.com/cgit
synced 2025-07-10 02:04:33 +02:00
Avoid signed bitfields
Bitfields are only defined for unsigned types. Detected by sparse. Signed-off-by: John Keeping <john@keeping.me.uk>
This commit is contained in:
parent
e3d3fffdd4
commit
12d3d4c3ed
2 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue