summaryrefslogtreecommitdiff
path: root/ssh-push.c
diff options
context:
space:
mode:
authorMika Kukkonen <mikukkon@miku.homelinux.net>2005-06-21 20:04:33 (GMT)
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-06-21 20:30:55 (GMT)
commitd565b3412a0242e2c729bd77d18c74ecd57184dc (patch)
tree7fca6cb370ba8a446c51e0368a74d3d94f8bf564 /ssh-push.c
parentdc14841102bb364c2be200e8456146fc8df970b9 (diff)
downloadgit-d565b3412a0242e2c729bd77d18c74ecd57184dc.zip
git-d565b3412a0242e2c729bd77d18c74ecd57184dc.tar.gz
git-d565b3412a0242e2c729bd77d18c74ecd57184dc.tar.bz2
[PATCH] Fix several gcc4 signedness warnings
Here is a patch that fixes several gcc4 warnings about different signedness, all between char and unsigned char. I tried to keep the patch minimal so resertod to casts in three places. Signed-off-by: Mika Kukkonen <mikukkon@iki.fi> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'ssh-push.c')
-rw-r--r--ssh-push.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssh-push.c b/ssh-push.c
index 18c0b65..12fb9fc 100644
--- a/ssh-push.c
+++ b/ssh-push.c
@@ -8,7 +8,7 @@ unsigned char remote_version = 0;
int serve_object(int fd_in, int fd_out) {
ssize_t size;
int posn = 0;
- char sha1[20];
+ unsigned char sha1[20];
unsigned long objsize;
void *buf;
signed char remote;