connect.c: remove unused parameters from tcp_connect and proxy_connect
[gitweb.git] / commit.c
index 946615d2ad5c364fe63b201aa9a9574737804c38..0327df12324ac77c1d5d82a22ce4b30f1b5c7a18 100644 (file)
--- a/commit.c
+++ b/commit.c
@@ -543,7 +543,7 @@ static int add_merge_info(enum cmit_fmt fmt, char *buf, const struct commit *com
                const char *hex = abbrev
                        ? find_unique_abbrev(p->object.sha1, abbrev)
                        : sha1_to_hex(p->object.sha1);
-               char *dots = (abbrev && strlen(hex) != 40) ? "..." : "";
+               const char *dots = (abbrev && strlen(hex) != 40) ? "..." : "";
                parent = parent->next;
 
                offset += sprintf(buf + offset, " %s%s", hex, dots);