Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
Remove all void-pointer arithmetic.
[gitweb.git]
/
http-push.c
diff --git
a/http-push.c
b/http-push.c
index aaf155c5bcb5b7587afa1a3063316d3183020984..9853619687a25501d1dee052f39ebeedcbd8dc69 100644
(file)
--- a/
http-push.c
+++ b/
http-push.c
@@
-196,7
+196,7
@@
static size_t fwrite_sha1_file(void *ptr, size_t eltsize, size_t nmemb,
struct transfer_request *request = (struct transfer_request *)data;
do {
ssize_t retval = write(request->local_fileno,
- ptr + posn, size - posn);
+
(char *)
ptr + posn, size - posn);
if (retval < 0)
return posn;
posn += retval;