summaryrefslogtreecommitdiff
path: root/remote-curl.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2018-09-24 17:30:47 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-09-24 17:30:47 (GMT)
commitae109a9789da452192588b517f893f6bda6383e6 (patch)
treefa0bfe3be065bcf20fe1671effadc57ba0aab23e /remote-curl.c
parent48a81ed29795da3e4cc40d4e5ea535878e4f2d9f (diff)
parentc3b9bc94b9bee431323856fe2c373312c60969d7 (diff)
downloadgit-ae109a9789da452192588b517f893f6bda6383e6.zip
git-ae109a9789da452192588b517f893f6bda6383e6.tar.gz
git-ae109a9789da452192588b517f893f6bda6383e6.tar.bz2
Merge branch 'en/double-semicolon-fix'
Code clean-up. * en/double-semicolon-fix: Remove superfluous trailing semicolons
Diffstat (limited to 'remote-curl.c')
-rw-r--r--remote-curl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/remote-curl.c b/remote-curl.c
index fb28309..762a55a 100644
--- a/remote-curl.c
+++ b/remote-curl.c
@@ -178,7 +178,7 @@ static int set_option(const char *name, const char *value)
options.no_dependents = 1;
return 0;
} else if (!strcmp(name, "filter")) {
- options.filter = xstrdup(value);;
+ options.filter = xstrdup(value);
return 0;
} else {
return 1 /* unsupported */;