summaryrefslogtreecommitdiff
path: root/remote-curl.c
diff options
context:
space:
mode:
authorElijah Newren <newren@gmail.com>2018-09-05 17:03:07 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-09-05 17:21:24 (GMT)
commitc3b9bc94b9bee431323856fe2c373312c60969d7 (patch)
treecb6907f9c9c2c5085df4522144f11d99809ec2c9 /remote-curl.c
parent53f9a3e157dbbc901a02ac2c73346d375e24978c (diff)
downloadgit-c3b9bc94b9bee431323856fe2c373312c60969d7.zip
git-c3b9bc94b9bee431323856fe2c373312c60969d7.tar.gz
git-c3b9bc94b9bee431323856fe2c373312c60969d7.tar.bz2
Remove superfluous trailing semicolons
Signed-off-by: Elijah Newren <newren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
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 99b0bed..9e922bf 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 */;