mirror of
https://github.com/libgit2/libgit2.git
synced 2026-06-22 06:26:26 +00:00
smart: use an unsigned int for a bitfield
This commit is contained in:
@@ -203,7 +203,7 @@ int git_smart__update_heads(transport_smart *t, git_vector *symrefs);
|
||||
/* smart_pkt.c */
|
||||
typedef struct {
|
||||
git_oid_t oid_type;
|
||||
int seen_capabilities: 1;
|
||||
unsigned int seen_capabilities: 1;
|
||||
} git_pkt_parse_data;
|
||||
|
||||
int git_pkt_parse_line(git_pkt **head, const char **endptr, const char *line, size_t linelen, git_pkt_parse_data *data);
|
||||
|
||||
Reference in New Issue
Block a user