diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-08-08 14:48:41 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-08-08 14:48:41 -0700 |
commit | 940622bc8b33e085f62c5bcfe6183fe6f57888e2 (patch) | |
tree | 317b4e1134c92f488f28280d7441db43fb9e3454 /http.c | |
parent | 68e80da479ff940aea3f34447336e523b448f34c (diff) | |
parent | bc57b9c0cc5a123365a922fa1831177e3fd607ed (diff) | |
download | git-940622bc8b33e085f62c5bcfe6183fe6f57888e2.tar.gz |
Merge branch 'rs/use-strbuf-addstr'
* rs/use-strbuf-addstr:
use strbuf_addstr() instead of strbuf_addf() with "%s"
use strbuf_addstr() for adding constant strings to a strbuf
Diffstat (limited to 'http.c')
-rw-r--r-- | http.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1225,7 +1225,7 @@ void append_remote_object_url(struct strbuf *buf, const char *url, strbuf_addf(buf, "objects/%.*s/", 2, hex); if (!only_two_digit_prefix) - strbuf_addf(buf, "%s", hex+2); + strbuf_addstr(buf, hex + 2); } char *get_remote_object_url(const char *url, const char *hex, |