Merge branch 'en/double-semicolon-fix' into maint

Code clean-up.

* en/double-semicolon-fix:
  Remove superfluous trailing semicolons
This commit is contained in:
Junio C Hamano
2018-11-21 22:57:54 +09:00
3 changed files with 3 additions and 3 deletions

View File

@ -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 */;