mirror of
https://github.com/libgit2/libgit2.git
synced 2026-06-22 06:26:26 +00:00
stream: use an unsigned int for a bitmask
This commit is contained in:
@@ -29,8 +29,8 @@ GIT_BEGIN_DECL
|
||||
typedef struct git_stream {
|
||||
int version;
|
||||
|
||||
int encrypted : 1,
|
||||
proxy_support : 1;
|
||||
unsigned int encrypted : 1,
|
||||
proxy_support : 1;
|
||||
|
||||
/**
|
||||
* Timeout for read and write operations; can be set to `0` to
|
||||
|
||||
Reference in New Issue
Block a user