Skip to content

Commit

Permalink
http-push: wrap signature of get_remote_object_url
Browse files Browse the repository at this point in the history
The signature of get_remote_object_url stands at 96 characters (as
pointed out by Dscho); this patch wraps it so that it conforms to the
80 characters guideline.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Tay Ray Chuan authored and Junio C Hamano committed Feb 4, 2009
1 parent 223bd93 commit 2d20b7e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion http-push.c
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,8 @@ static void process_response(void *callback_data)

#ifdef USE_CURL_MULTI

static char *get_remote_object_url(const char *url, const char *hex, int only_two_digit_prefix)
static char *get_remote_object_url(const char *url, const char *hex,
int only_two_digit_prefix)
{
struct strbuf buf = STRBUF_INIT;
append_remote_object_url(&buf, url, hex, only_two_digit_prefix);
Expand Down

0 comments on commit 2d20b7e

Please sign in to comment.