diff options
author | Junio C Hamano <gitster@pobox.com> | 2018-11-21 22:57:54 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-11-21 22:57:55 +0900 |
commit | ab6409c66ddad8ee69771bb6e4978950d066523c (patch) | |
tree | 7b8e805d813f945cca078f0044507ae082b59b64 /remote-curl.c | |
parent | 761868b693e2c034148c32bb7fba182a0b381d44 (diff) | |
parent | c3b9bc94b9bee431323856fe2c373312c60969d7 (diff) | |
download | git-ab6409c66ddad8ee69771bb6e4978950d066523c.tar.gz |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/remote-curl.c b/remote-curl.c index fb28309e85..762a55a75f 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 */; |