Commit b882e9e7 by Edward Thomson

stream: use an unsigned int for a bitmask

parent 4681b3ae
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment