Skip to content

Commit

Permalink
Merge branch 'jk/maint-http-half-auth-fetch'
Browse files Browse the repository at this point in the history
Finishing touches to squelch a compiler warning.

* jk/maint-http-half-auth-fetch:
  remote-curl.c: Fix a compiler warning
  • Loading branch information
Junio C Hamano committed Nov 21, 2012
2 parents 3a189da + 3771154 commit fda800f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion remote-curl.c
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ static int post_rpc(struct rpc_state *rpc)
struct curl_slist *headers = NULL;
int use_gzip = rpc->gzip_request;
char *gzip_body = NULL;
size_t gzip_size;
size_t gzip_size = 0;
int err, large_request = 0;

/* Try to load the entire request, if we can fit it into the
Expand Down

0 comments on commit fda800f

Please sign in to comment.