aboutsummaryrefslogtreecommitdiff
path: root/remote.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2016-05-03 14:08:15 -0700
committerJunio C Hamano <gitster@pobox.com>2016-05-03 14:08:15 -0700
commit643318913fc791790eb30a78531f7ae4eed7155d (patch)
tree6c0f1986b04caa06f04c66ae33b348be27b90ac7 /remote.c
parent3944f903eb8eba3fe86f5b95acdb9af7a0f0438e (diff)
parent060e7766ba34dc4fef351494239235ba365edd18 (diff)
downloadgit-643318913fc791790eb30a78531f7ae4eed7155d.tar.gz
git-643318913fc791790eb30a78531f7ae4eed7155d.tar.xz
Merge branch 'jk/fix-attribute-macro-in-2.5'
Code fixup. * jk/fix-attribute-macro-in-2.5: remote.c: spell __attribute__ correctly
Diffstat (limited to 'remote.c')
-rw-r--r--remote.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/remote.c b/remote.c
index 28fd676ac..ddc4f8fd4 100644
--- a/remote.c
+++ b/remote.c
@@ -1660,7 +1660,7 @@ int branch_merge_matches(struct branch *branch,
return refname_match(branch->merge[i]->src, refname);
}
-__attribute((format (printf,2,3)))
+__attribute__((format (printf,2,3)))
static const char *error_buf(struct strbuf *err, const char *fmt, ...)
{
if (err) {