diff options
author | Elijah Newren <newren@gmail.com> | 2018-09-05 10:03:07 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-09-05 10:21:24 -0700 |
commit | c3b9bc94b9bee431323856fe2c373312c60969d7 (patch) | |
tree | cb6907f9c9c2c5085df4522144f11d99809ec2c9 /remote-curl.c | |
parent | 53f9a3e157dbbc901a02ac2c73346d375e24978c (diff) | |
download | git-c3b9bc94b9bee431323856fe2c373312c60969d7.tar.gz |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/remote-curl.c b/remote-curl.c index 99b0bedc6d..9e922bf937 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 */; |