summaryrefslogtreecommitdiff
path: root/remote-curl.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2018-11-21 13:57:54 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-11-21 13:57:55 (GMT)
commitab6409c66ddad8ee69771bb6e4978950d066523c (patch)
tree7b8e805d813f945cca078f0044507ae082b59b64 /remote-curl.c
parent761868b693e2c034148c32bb7fba182a0b381d44 (diff)
parentc3b9bc94b9bee431323856fe2c373312c60969d7 (diff)
downloadgit-ab6409c66ddad8ee69771bb6e4978950d066523c.zip
git-ab6409c66ddad8ee69771bb6e4978950d066523c.tar.gz
git-ab6409c66ddad8ee69771bb6e4978950d066523c.tar.bz2
Merge branch 'en/double-semicolon-fix' into maint
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 */;