From: Tay Ray Chuan Date: Tue, 3 Feb 2009 12:39:00 +0000 (+0800) Subject: http-push: wrap signature of get_remote_object_url X-Git-Tag: v1.6.2-rc0~15^2 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=2d20b7ebf672c28b18da4558d96f100613e4e4ca;p=git-core%2Fgit.git http-push: wrap signature of get_remote_object_url 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 --- diff --git a/http-push.c b/http-push.c index 4b941f4d3..bb00728f1 100644 --- a/http-push.c +++ b/http-push.c @@ -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);