summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarlos Martín Nieto <carlos@cmartin.tk>2011-10-05 20:17:21 +0200
committerVicent Marti <tanoku@gmail.com>2011-10-12 21:33:19 +0200
commit03e4833b09cf610de32d668a543d43b60d4c4ffd (patch)
tree2fb16df2ffb808d0a68dc831913b85bf8aa3e1ae /src
parentfc3e3c5577d177279b928ac23d3925de29a41056 (diff)
downloadlibgit2-03e4833b09cf610de32d668a543d43b60d4c4ffd.tar.gz
remote: bitfield should be unsigned
Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>
Diffstat (limited to 'src')
-rw-r--r--src/remote.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/remote.h b/src/remote.h
index 66b9dd8f8..4b1db6c4e 100644
--- a/src/remote.h
+++ b/src/remote.h
@@ -19,7 +19,7 @@ struct git_remote {
struct git_refspec push;
git_transport *transport;
git_repository *repo;
- int need_pack:1;
+ unsigned int need_pack:1;
};
#endif